Data Types Flashcards
1
Q
List
A
An ordered collection of one or more data items, put in square brackets
Lists ARE Mutable
1
Q
Tuple
A
an ordered collection of one or more data items, not neccessarily the same type, put in parentheses
tuples are IMMUTABLE
2
Q
Set
A
Sets are similar to lists, but are unordered, unchangeable, and do not allow duplicate values.
3
Q
dict
A
dicts store python data in key value pairs
duplicate keys not allowed
as of Python 3.7, dictionaries ARE orderedstore python data in key value pairs
duplicate keys not allowed
as of Python 3.7, dictionaries ARE ordered
4
Q
A