Skip to content

Instantly share code, notes, and snippets.

View willmcc's full-sized avatar

William McCombie willmcc

View GitHub Profile
@willmcc
willmcc / gist:830741
Created February 17, 2011 01:29
Self-Commenting Code in Python
class PartyLocation:
BAR = 1
RESTAURANT = 2
def choosePartyLocation(members_of_party):
drinkers = []
non_drinkers = []
for i in range( len(members_of_party) ):
if(willDrink(person)):