Created
December 14, 2012 17:11
-
-
Save Geekfish/4287024 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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