4 lines
99 B
Python
4 lines
99 B
Python
name = "eric"
|
|
msg = f"Hello {name.title()}, would you like to learn some Python today?"
|
|
|
|
print(msg) |