Advertisement
Guest User

Untitled

a guest
Apr 30th, 2020
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. bottles = 99
  2. while bottles != 0:
  3.     print(f"{bottles} bottles of beer on the wall\n{bottles} bottles of beer!\nIf one of those bottles\nShould happen to fall")
  4.     bottles -= 1
  5.     print(f"{bottles} bottles of beer on the wall.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement