Exercise 4 · Chapter: Linear ProgramsRequired+50 XP
Greeting Builder
Use an f-string to build a greeting. Given the variables below, print:
Hello, Alex! You are 10 years old.
Need a hint?
3 available · costs 5 XP each
python
name = "Alex"
age = 10
# Use an f-string to print the greeting
Output
Run your code to see the output here.