Data Types
#fundamental data types
# int
# float
# complex data type
# str
# bool
# list
# tuple
# set
# dict
#int and float
#print(type(6)) #6 is storing in memory
#print(type(2-4))
#print(type(2*4))
#print(type(2/4)) #0.5
#print (type(9.1+1.1))
# print (2**3)
# print (2//4)
# print(5%4)
#Math functions
# print(round(3.1))
# print(abs(-20))
#operator precedence
#print((20-3) + 2 ** 2)
# ()
# **
# * /
# + -
# print(bin(5))
# print(int('0b101', 2))INFO