There is probably an easy answer for this, just not sure how to tease it out of my searches.
I adhere to PEP8 in my python code, and I\'m currently using OptionParser fo
try this:
if __name__=='__main__': usage = '%prog [options]\nWithout any options, will display 10 random ' \ 'users of each type.' parser = OptionParser(usage)