Advertisement
Guest User

Untitled

a guest
Apr 9th, 2020
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.25 KB | None | 0 0
  1. #Create a haiku function, which prints out each line of a haiku one by one.
  2.  
  3. def haiku():
  4.   print('Yes we are very far away')
  5.   print('but since we share the sky')
  6.   print('and we see the same moon')
  7.   print('we are always togother')
  8.  
  9. haiku()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement