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
Use automatic string concatenation + implicit line continuation:
long_string = ("Line 1 " "Line 2 " "Line 3 ") >>> long_string 'Line 1 Line 2 Line 3 '