Signing you back in…

Python Classroom

Sign in to start coding

Write Python in your browser. Run it instantly. Submit your work to your teacher.

Use your school Google account.

welcome.py
# Welcome to Python Classroom

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

students = ["Alex", "Sam", "Riley"]

for student in students:
    print(greet(student))

# >>> Hello, Alex!
# >>> Hello, Sam!
# >>> Hello, Riley!