Using index to loop over a sequence
Don't :
for i in range(10) :
print tab[i]
Do :
for elem in tab :
print elem
For will automate most iteration operation for you.
Use "==" to check against True or False
Don't :
if (var == True) :
# do something
if (var != True) :
# do something
if (var == False) :
# do something
if (var == None) :
# do something
Do :
if var :
# do something
if not var :
# do something
if var is None :
# do something
Any object has a boolean value. For built-in types : False, {}, [], "" and 0 are considered False. The rest is True. "Is" let you check for identity, and since None is a Singleton, you should use it.
Do not check if you can, do it and handle the error
Pythonistas usually say "It's easier to ask for forgiveness than permission".
Don't :
if os.path.isfile(file_path) :
file = open(file_path)
else :
# do something
Do :
try :
file = open(file_path)
except :
# do something
Or even better with python 3 :
with open(file_path) as file :
Do not check against type
Python is dynamically typed, therefore checking for type makes you lose flexibility. Instead, use duck typing by checking behavior. E.G, you expect a string in a function, then use str() to convert any object in a string. You expect a list, use list() to convert any iterable in a list.
Don't :
def foo(name) :
if isinstance(name, str) :
print name.lower()
def bar(listing) :
if isinstance(listing, list) :
listing.append("test")
Do :
def foo(name) :
print str(name).lower()
def bar(listing) :
list(listing).append("test")
Using the last way, foo will accept any object. Bar will accept strings, tuples, sets, lists and much more. Cheap DRY :-)
Don't mix spaces and tabs
Just don't. You would cry.
Use object as first parent
This is tricky, but it will bite you as your program grows. There are old and new classes in Python. The old ones are, well, old. They lack some features, and can have awkward behavior with inheritance. To be usable, any of your class must be of the "new style". To do so, make it inherit from "object" :
Don't :
class Father :
pass
class Child(Father) :
pass
Do :
class Father(object) :
pass
class Child(Father) :
pass