python-crash-course/Chapter_08/8-09_messages.py
2025-02-21 14:45:39 +00:00

10 lines
232 B
Python

# Exercise 8-9 Messages
# Learning Objective: Pass a list to a function.
texts = ['hello', 'how are you?', 'i am well thanks']
def show_messages(messages):
for message in messages:
print(message)
show_messages(texts)