Data types

Text Type: str
Numeric Types: intfloatcomplex
Sequence Types: listtuplerange
Mapping Type: dict
Set Types: setfrozenset
Boolean Type: bool
Binary Types: bytesbytearraymemoryview
None Type: NoneType
int, float, bool, str, tuple- immutable

list - [] (mutable)
tuple - () (immutable list) //or just values separated by comas
set - {} (unique elements)
dictionary - {x:y, z:p} (map of elements)

for with two iterators

dictionary = {"cat": "chat", "dog": "chien", "horse": "cheval"}

for english, french in dictionary.items():
    print(english, "->", french)