8 lines
195 B
Python

def show_messages(messages):
"""Print all messages in the list."""
for message in messages:
print(message)
messages = ["hello there", "how are u?", ":)"]
show_messages(messages)