4 lines
185 B
Python
4 lines
185 B
Python
# This program assigns the name Ted to a variable and includes in a formatted print to stout
|
|
|
|
first_name = "Ted"
|
|
print(f"Hello {first_name}, would you like to learn some Python today?") |