All problems
EasyPython Basics
f-strings
Use an f-string to print a sentence with a variable embedded inside it.
- #strings
- #f-string
Sample input
name = "Priya", age = 22
Sample output
Priya is 22 years old.
string-formatting.py
Output
Press "Run code" to execute.
