"""This is some docstring. Where will this go? """
print_even_numbers
print_even_numbers(n)
n
print even numbers up to n.
print_even_numbers(15)
0 2 4 6 8 10 12 14
class
Classy
Classy(name, age)
name
age
Class docstring. What will this do?
thing1 = Classy('bob', '2') thing1.introduce()
Hi, My name is bob! I am 2 years old.