Chapters
Python114 chapters

Exercises

Comments

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

Exercise 1

Switch off the middle line with a comment so only the first and third print.

Python
print("first")
print("second")
print("third")
Exercise 2

Give the function a docstring saying what it returns, then print that docstring.

Python
def area(width, height):
    return width * height

print(area.__doc__)
Exercise 3

Replace the useless comment with one that explains why the limit is 50.

Python
# set batch size to 50
batch_size = 50
print(batch_size)