mystring = 'hello'print(mystring)mystring = "hello"print(mystring)
mystring = "Don't worry about apostrophes"print(mystring)
one = 1two = 2three = one + twoprint(three)hello = "hello"world = "world"helloworld = hello + " " + worldprint(helloworld)
a, b = 3, 4print(a,b)