Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View ozkatz's full-sized avatar

Oz Katz ozkatz

View GitHub Profile
@ozkatz
ozkatz / 99bottles
Created November 26, 2011 01:08 — forked from gsiegman/99bottles
99 Bottles of Beer on the Wall (as a one liner. I don't know why.)
import os; [ os.system('say %d bottles of beer on the wall, %d bottles of beer, if one of those bottles should happen to fall, %s bottles of beer on the wall' % (99 - i, 99 - i , 99 - i - 1)) for i in range(0, 99) ]