> "print message"
  Input In [1]
    > "print message"
    ^
SyntaxError: invalid syntax
msg = "Hello world"
print(msg)
Hello world
msg = "Hello! How are you?"
print(msg)
Hello! How are you?