PyDA Course
Éditeur plein écran

Playground

Écrivez et exécutez n'importe quel Python ici, rien n'est noté, rien n'est conservé à votre départ. Votre code est venu avec vous.

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