Python learning, made simple
Code, learn, and teach Python in the browser.
RunPy gives students a friendly Python IDE and gives teachers the tools to assign, review, and grade code — all in one place.
main.py
1# Welcome to RunPy
2def greet(name):
3 print(f"Hello, {name}!")
4
5greet("student")
6
7>>> Hello, student!