Python Project: Hello World π Python Script This repo contains python code that returns the message 'Hello World!' Run the code. Python #Message in single quotes print('Hello World!') #Message in double quotes print("Hello World!") Output Hello World! Hello World!