Data types

Текстовий тип: str
Числові типи: int, float, complex
Типи послідовностей: list, tuple, range
Тип відображення: dict
Типи множин: set, frozenset
Логічний тип: bool
Бінарні типи: bytes, bytearray, memoryview
Тип None: NoneType
int, float, bool, str, tuple — незмінні (immutable)

list - [] (змінний) tuple - () (незмінний list) //або просто значення через коми set - {} (унікальні елементи) dictionary - {x:y, z:p} (словник елементів)

for з двома ітераторами

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

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