from var import user_iq
print(hex(926123456789))
print (user_iq)
#variables
user_iq = 190
#constants
PI = 3.14
#augmented assignment operator
some_value = 5
some_value += 2
#str
name = "Kyle"
name = 'Kyle'
long_str = '''
Wow
'''
# string concatenation
iq = 100
#expression
user_age = (iq / 5)
#statement = entire line of code
# Escape Sequence
weather = "it\'s \"kind of \" sunny"
print(weather)