Advertisement
zhongnaomi

haiku poem print out

Jan 22nd, 2019
176
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. #Create a haiku poem list
  2. haiku = ["Little spider, " ,"will you outlive" ,"me?"]
  3.  
  4.  
  5. #Define a new function display_list
  6. def haiku_poem():
  7.     for poemS in haiku:
  8.         print(poemS)
  9. # Print each poem in the list line by line
  10. haiku_poem()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement