a whole number, positive or negative, without decimals, of unlimited length
Back
Python uses indentation to
Front
indicate a block of code
Back
For
Front
iterating over a sequence/executing a set of statements. Less like the keyword programming language, and works more like an iterator method as found in other-object oriented programming languages.
Back
Set
Front
collection which is unordered and unindexed. No duplicate members. {}
Back
List
Front
collection which is ordered and changeable. Allows duplicate members. []
Back
create a list
Front
this = ["apples", "bananas", "cherries"]
print (this)
Back
Docstrings can be
Front
one or multilined
Back
y=2.8
Front
float
Back
Tuple
Front
collection which is ordered unchangeable. Allows duplicate members. ()