Simple types, variables and objects

Simple types, variables and objects#

  • int, bool, float, complex, NoneType

  • True, False, None

  • Keyword is, and, or and not

  • Notions of objects and attributes (with complex)

  • Built-in functions isinstance(), dir()

print(2 + 2)
4