Variables
1234567891011121314
print(type("Hi, hello there!"))
username = 'supercoder'
password = 'supersecret'
long_string = '''
WOW
O O
---
'''
print(long_string)
first_name = 'John'
last_name = 'Doe'
full_name = first_name + ' ' + last_name
print(full_name)
Python
INFO