8 lines
159 B
Python
8 lines
159 B
Python
# Exercise 8-1 Message
|
|
# Leaning Objective: Create a simple function
|
|
|
|
def display_message():
|
|
print("This chapter is about functions!")
|
|
|
|
display_message()
|