float_num = 6.7                                     # variable that has been assigned a float
print(type(float_num))                              # prints the type of float_num
print(str(float_num) + " is a float.")              # prints "6.7 is a float."
print("\"Hello, I'm Aaron, it's nice to meet you!\"")  # prints "Hello, I'm Aaron, it's nice to meet you!"