5 lines
177 B
Python
5 lines
177 B
Python
# Exercise 2-10 Favorite Number
|
|
# Learning Objective: Set a "favorite" number as a variable and print it.
|
|
|
|
myFavoriteNum = 1337
|
|
print(f"My favorite number is {myFavoriteNum}!") |