Introduction
Python hosting: PythonAnywhere — host, run and code Python in the cloud. Free tier available.
Welcome to my Python Course!
Python is a general-purpose computer programming language. This course is suitable for both Python 2 and Python 3.
Related Course:
Practice Python with interactive exercises
Download Python
To run Python code, you will need one of these programs:- PyCharm for Windows, Mac or Linux
- QPython for Google Android
- Pythonista for Apple iPhone
- Other programs
PyCharm, a popular Python editorRun Python code
A python program should be save as a file with a .py extension. Try this code:print("Hello World!")
print("This is a Python program.")
Expected output:
Hello World!
This is a Python program
If you are using the interpreter use:
python program.py
Practice
Stop reading. Start writing Python.
PyChallenge gives you interactive exercises in your browser — no install needed.
Practice Python with interactive exercises