Variables
user_IQ = 190 # iq can be called as name and 190 binding also
user_age = user_IQ // 4
print(user_age)
# Constants
PI = 3.14 # change
a,b,c = 1,2,3
print(a)
print(b)
print(c)INFO
user_IQ = 190 # iq can be called as name and 190 binding also
user_age = user_IQ // 4
print(user_age)
# Constants
PI = 3.14 # change
a,b,c = 1,2,3
print(a)
print(b)
print(c)