Grafundzijus

Haiku

Apr 22nd, 2019
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. # Create a haiku function, which prints out each line of a haiku one by one.
  2.  
  3. haiku_rows = ["Snow in my show", "Abandoned", "Sparrow's nest"]
  4.  
  5. for item in haiku_rows:
  6.     print(item)
Add Comment
Please, Sign In to add comment