Chapters
Python114 chapters

Exercises

Variables

3 tasks. Write the code, press Check, and the page runs it against a real Python interpreter.

Exercise 1

Create a variable called city holding the text Berlin, then print it.

Python
# your code here
Exercise 2

total starts at 50. Add 25 to it using the shorthand operator, then print it.

Python
total = 50
# add 25 to total
print(total)
Exercise 3

Print scratch, then remove the name with del, then print done.

Python
scratch = "temporary"
# print it, delete the name, then print done