<br><div class="gmail_quote">On Wed, Oct 17, 2012 at 11:06 PM, Zero Piraeus <span dir="ltr"><<a href="mailto:schesis@gmail.com" target="_blank">schesis@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
:<br>
<br>
Okay, so, first thing vaguely Python-related that comes to mind [so<br>
probably not even slightly original, but then that's not really the<br>
point]:<br>
<br>
What are people's preferred strategies for dealing with lines that go<br>
over 79 characters? A few I can think of off the bat:<br>
<br>
5. Perform an otherwise pointless assignment to a temp variable on the<br>
previous line to make it fit.<span class="HOEnZb"><font color="#888888"><br></font></span></blockquote><div>I tend to favor this one, #5.<br><br>In fact, I tend to do lots of "otherwise pointless" variables, because I want to be able to quickly and easily insert print statements/functions without having to  split up large commands, during debugging.<br>
<br>IOW, I don't like big, long one-liners. They tend to be less clear than using lots of intermediate variables, and when you go to debug them you often end up splitting  them up anyway.<br><br></div></div>