Skip to content

Instantly share code, notes, and snippets.

@BurnBabyBurn71
Created August 7, 2014 10:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BurnBabyBurn71/2ec62a61d88924903a7e to your computer and use it in GitHub Desktop.
Save BurnBabyBurn71/2ec62a61d88924903a7e to your computer and use it in GitHub Desktop.
/g/ 99 bottles of beer lyrics in python
x=99
while x>=1:
print(x," bottles of beer on the wall,",x," bottles of beer! Take one down, pass it around,")
x=x-1
print(x," bottles of beer on the wall!")
print("No more bottles of beer on the wall, no more bottles of beer. Go to the store and buy some more, 99 bottles of beer on the wall.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment