CS50 IDE and Python

Python 3

Currently, CS50 IDE is running Python 3.7.3 (as of July 10, 2019)

To run a Python file in CS50 IDE, save the file. For example, hello.py

Then type: python hello.py

hello.py
~/workspace/ $ python hello.py
Hello World!

Last updated