GitHub Codespaces lets you open a complete development environment directly in your browser. It feels like VS Code, but runs on GitHubโs cloud machines.
For beginners, classrooms.
python-codespace-hello
Inside Codespaces, create a new file named hello.py
and write your first Python program:
print("Hello, World! ๐")
print("Welcome to Python on GitHub Codespaces")
Open the terminal and run:
python hello.py
python doesnโt work, try:
python3 hello.py