/Python-Project-Hello-World

Python Project Hello World

Primary LanguagePython

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!