Boy... I don't know where to begin. I've broken just about every rule in the book. My main problem i think is I find I use if statements without the else a lot. Like I will do this:
foo = 300
if foo == 200:
print("foo is equal to 200")
if foo is != 200:
print("foo is not 200")
I could of easily used an else there, it also looks extremely messy.
I just give them names off the top of my head.... I'm trying to break that habit but I will literally use "foo" as a variable name if I can't think of anything.
If I listed everything else, I would go on all day. ;D