Python Flashcards
1
Q
Dictionaries
A
A datatype comprised of key:value pairs.
2
Q
Modules
A
Reusable python files that you can import to simplify your code.
3
Q
List
A
A data structure that stores multiple items in a single variable.
4
Q
Files
A
A way to save python code and reuse it.
5
Q
Class
A
A blueprint for creating objects. It defines the methods and attributes of an object.
6
Q
Difference between a list and a tuple
A
Lists are mutable. Tuples are immutable.