Python - 2
Python - 2: Variables
Variables store information in Python. You can save text, numbers, and more.
👀 Show Example Solution
name = "Sophie" print(name) favorite_food = "Tacos" print(favorite_food)

Python - 2: Variables
Variables store information in Python. You can save text, numbers, and more.
name = "Sophie" print(name) favorite_food = "Tacos" print(favorite_food)