Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Built-in types

  • str
  • int
  • float
  • bool
  • list
  • tuple
  • dict
  • set
anwser: str = "42"
width: int = 17
pi: float = 3.14
good: bool = True

animals: list = ["camel", "snake", "crab"]
language: tuple = ("Perl", "Python", "Rust")

mapping: dict = {
        "camel": "Perl",
        "snake": "Python",
        "crab": "Rust",
}

things: set = {"chair", "table"}