1
0
Files
pythonCrashCourse/chap2/personal_message.py

4 lines
185 B
Python
Raw Normal View History

2025-05-09 10:12:44 -04:00
# 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?")