Skip to content

Instantly share code, notes, and snippets.

@adaptives
Created September 27, 2011 09:05
Show Gist options
  • Select an option

  • Save adaptives/1244650 to your computer and use it in GitHub Desktop.

Select an option

Save adaptives/1244650 to your computer and use it in GitHub Desktop.
LPTHW Exercise 30
#LPTHW Exercise 30
people = 30
cars = 40
buses = 15
if cars > people:
print "We should take the cars."
elif cars < people:
print "We should not take the cars."
else:
print "We can't decide."
if buses > cars:
print "That's too many buses."
elif buses < cars:
print "Maybe we could take the buses."
else:
print "We still can't decide."
if people > buses:
print "Alright, let's just take the buses."
else:
print "Fine, let's stay home then."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment