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
age = 18
current_balance = 51.28
is_tall = False
message = "Have a nice day"
my_list = ["apples", 5, 7.3]
my_dictionary = {'amount': 75}
coordinates = (40, 74)
my_set = {5, 6, 3}
Example 3: python data types
string = 'ASCII text'
integer = 1234567890
floatnum = 123.456
numlist = [1,2,3,4,5]
dictionary = {'key','value'}
Example 4: what is the type of the data python
>>> type(1234)
<class 'int'>
>>> type(55.50)
<class 'float'>
>>> type(6+4j)
<class 'complex'>
>>> type("hello")
<class 'str'>
>>> type([1,2,3,4])
<class 'list'>
>>> type((1,2,3,4))
<class 'tuple'>
>>> type({1:"one", 2:"two", 3:"three"}
<class 'dict'>
Example 5: python data types
average_tutorial_rating = 4.01
age = 20
tutorials_are_good = True
numbers = [1, 2, 3]
Example 6: finding data types in python
To find the data type of data in Python, you use the type() function. You place the variable inside of the type() function and Python returns the data type