Skip to content

Instantly share code, notes, and snippets.

@evgenidb
Created March 8, 2011 23:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evgenidb/861321 to your computer and use it in GitHub Desktop.
Save evgenidb/861321 to your computer and use it in GitHub Desktop.
fmi.py-bg.net - bad coding 3
#Example 3:
#Wrong way
if True:
print("Hello, ")
print("World!")
else:
print("Bye, ")
print("World!")
#Correct way:
if True:
print("Hello, ")
print("World!")
else:
print("Bye, ")
print("World!")
#Reason: Hard to read and confusing AND abso-fucking-lutely ANNOYING!
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment