7 lines
163 B
Python
7 lines
163 B
Python
def display_message():
|
|
"""Display a message about what I'm learning."""
|
|
msg = "I'm learning to store code in functions."
|
|
print(msg)
|
|
|
|
display_message()
|