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)