Lesson 1, Topic 4
In Progress

Introduction To Python Variables

Lesson Progress
0% Complete

Code of the Lesson

stories = 'The Voyages of Sinbad The Sailor'
price = 100

print(stories)
print(price)

stories = 'Cinderella'
price = 150

print(stories)
print(price)

stories = stories + ' * Little Red Riding Hood'
price = price + 20

print(stories)
print(price)

stories = stories + ' * Snow White' + ' * Hansel and Gretel'
print(stories)