Mastering Python Networking
上QQ阅读APP看书,第一时间看更新

Python built-In types

Python has several standard types built into the interpreter:

  • None: The Null object
  • Numerics: int, long, float, complex, and bool (The subclass of int with True or False value)
  • Sequences: str, list, tuple, and range
  • Mappings: dict
  • Sets: set and frozenset