Data Types Flashcards

1
Q

List

A

An ordered collection of one or more data items, put in square brackets

Lists ARE Mutable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
1
Q

Tuple

A

an ordered collection of one or more data items, not neccessarily the same type, put in parentheses

tuples are IMMUTABLE

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Set

A

Sets are similar to lists, but are unordered, unchangeable, and do not allow duplicate values.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q
A
How well did you know this?
1
Not at all
2
3
4
5
Perfectly