Python - 2

Python - 2: Variables

Variables store information in Python. You can save text, numbers, and more.

✦ Python Editor
▶ Output

👀 Show Example Solution
name = "Sophie"

print(name)

favorite_food = "Tacos"

print(favorite_food)