Intro Lessons
print(type(2/4))
print(type(2+4))
print(round(3.1))
pickle=5
pickle*=3
print(pickle)
weather = "\t It\'s \"kind of\" sunny \n hope you have a good day!"
print(weather)
name = 'Stephen'
age = 36
print(f'Hey {name}. You are {age} years old!')INFO