Skip to content

Instantly share code, notes, and snippets.

@Geekfish
Created December 14, 2012 17:11
Show Gist options
  • Save Geekfish/4287024 to your computer and use it in GitHub Desktop.
Save Geekfish/4287024 to your computer and use it in GitHub Desktop.
def most_common_problems():
problems = (
"People that come from PHP",
"Coming up with variable names",
"Off-by-one index calculations",
)
print "The three most common problems in programming are:"
for x in range(1, len(problems)):
print "* %s" % problems[x]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment