Data Types Flashcards
1
Q
True or False.
In programming, data type is an important concept.
A
True
2
Q
True or False.
Variable can store data of different data types, and different data types can do different things
A
True
3
Q
Text type
A
str
4
Q
Numeric types
A
int, float, complex
5
Q
Sequence types
A
list, tuple, range
6
Q
Mapping type
A
dict
7
Q
Set types
A
set, frozenset
8
Q
Boolean type
A
bool
9
Q
Binary type
A
bytes, bytearray, memoryview
10
Q
values mean True or False
A
Boolean (bool)
11
Q
integers are whole numbers, can be
positive or negative
A
Integers (int)
12
Q
numbers with decimal, can be positive or negative
A
Float (float)
13
Q
You can get the data type of a variable with the ___
A
type()function