PyDA Course
Editor a pantalla completa

Playground

Escribe y ejecuta cualquier Python aquí: nada se califica, nada se guarda al irte. Tu código vino contigo.

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"))