the types of Python code example
Example 1: python data types
Text Type: str
Numeric Types: int, float, complex
Sequence Types: list, tuple, range
Mapping Type: dict
Set Types: set, frozenset
Boolean Type: bool
Binary Types: bytes, bytearray, memoryview
Strings: "This is a string"
'This is also a string'
"""
Triple quotes allow you to have multi-line strings and are
useful for automatically escaping "single quotes"
"""
Integers: 1
12345678901234567890
0b10 = 2 in binary, 0o10 = 8 in octal, 0x10 = 16 in hexadecimal
Floats:
Complex:
Lists:
Tuples:
Ranges:
Dictionaries:
Sets:
Booleans:
...
Example 2: python data types
average_tutorial_rating = 4.01
age = 20
tutorials_are_good = True
numbers = [1, 2, 3]