Instructions
Write a one-line program to output the following haiku. Keep in mind that for a one-line program, only one print command is used.
Moon and stars wonder
where have all the people gone
alone in hiding.
- Albrecht Classen.
Hint: Remember that the escape sequences \n and \t can be used to create new lines or tabs for extra spacing.

See Answers (1)

Suggested Answer

Answer:pythonExplanation:print("Moon and stars wonder\nwhere have all the people gone\nalone in hiding.\n- Albrecht Classen.")

Related Question in Computers and Technology