# https://www.learnpython.org/en/Variables_and_Types mystring = 'hello' print(mystring) mystring = "jello" print(mystring) print("Don't worry about 🍺") one = 1 two = 2 three = one + two print(three) hello = "hello" world = "world" helloworld = hello + " " + world print(helloworld) a, b = 3, 4 print(b, b, b, b, a, a, b)