print(type("Hello World!"))
print(type(501))
print(type(8.33333))
student_name = "Colette Browning"
print(type(student_name))
# [ ] show the type after assigning bucket = a whole number value such as 16
bucket = 16
print(type(bucket))
# [ ] show the type after assigning bucket = a word in "double quotes"
bucket = "long"
print(type(bucket))
# [ ] display the type of 'single quoting' (use single quotes)
print(type('single quoting'))
# [ ] display the type of "double quoting" (use double quotes)
print(type("double quoting"))
# [ ] display the type of "12" (use quotes)
print(type("12"))
# [ ] display the type of 12 (no quotes)
print(type(12))
# [ ] display the type of -12 (no quotes)
print(type(-12))
# [ ] display the type of 12.0 (no quotes)
print(type(12.0))
# [ ] display the type of 1.55
print(type(1.55))
# [ ] find the type of the type(3) statement (no quotes) - just for fun
print(type(3))
# [ ] Review & run code
print("my number is " + "123")
print("my number is " + 123)
total_cost = 3 + 45
print(total_cost)
I removed the quotes from 45
school_num = 123
print(school_num)
#I removed the first statement
# Hypothesis: I predict it will be a float
print(type(3.3))
print(type(3))
print(3.3 + 3)