Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #Create a haiku poem list
- haiku = ["Little spider, " ,"will you outlive" ,"me?"]
- #Define a new function display_list
- def haiku_poem():
- for poemS in haiku:
- print(poemS)
- # Print each poem in the list line by line
- haiku_poem()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement