# 3.3 - Create a Variable # Solutions to review exercies # Exercise 3 (exercises 1 and 2 are done in interactive window) # This solution works for Exercises 1 and 2 by typing the same lines into the # interactive window. # Display a string directly print("hello") # Display the contents of a string variable my_string = "hi" print(my_string)