A gentler way to begin
Learn Python one useful idea at a time.
Python Path turns the intimidating first steps into a clear sequence of tiny wins: read, write, run, reflect.
hello.py
student = "Ada"
print(f"Welcome, {student}!")Welcome, Ada!
Practice lab · Lesson 01
Introduce yourself to Python.
Set a name, then use an f-string inside print() to greet that person. The starter script already shows the shape.
Your script
Tip: keep the name Ada for this first challenge, then personalize it after you run it.
Console output
Run your script to see its output here.
Why this matters
Variables let your program remember information. An f-string places that information directly inside a readable sentence.