4 lines
66 B
Python
4 lines
66 B
Python
fav_num = 42
|
|
msg = f"My favorite number is {fav_num}."
|
|
|
|
print(msg) |
fav_num = 42
|
|
msg = f"My favorite number is {fav_num}."
|
|
|
|
print(msg) |