You are given a user's name (name = 'Alex') and age (age = 28). Construct and print a greeting string using an f-string: 'Hello Alex, you will be 29 next year!'.
Instructions
Use an f-string or string formatting.
Calculate `age + 1` inside the formatted string.
Print the exact resulting sentence.
Progressive Hints (1 / 1)
Python f-strings allow inline expressions: `f"Hello {name}, you will be {age + 1} next year!"`.
solution.py
Ctrl+Enter to run
Loading Monaco Editor...
Press Ctrl+Enter or click "Run Code" to execute your solution in the browser.