Hello world Script:
print("Hello, World!")
Result: Hello, World!

Datatypes

  • Numeric - int, float, complex
  • String - str
  • Sequence - list, tuple, range
  • Binary - bytes, bytearray, memoryview
  • Mapping - dict
  • Boolean - bool
  • Set - set, frozenset
  • None - NoneType

Use type() to get the datatype.