PyDA Course
Full-screen editor

Playground

Write and run any Python here, nothing is graded, nothing is saved when you leave.

python
# Playground — write and run any Python here.
# Nothing is graded here; it's just a bigger scratch space.

def greet(name):
    return f"Hello, {name}!"

print(greet("world"))