Search Results

6
votes

While coding, how many columns do you format for?

I see a lot of people saying they format for 80 columns. While it may be true that narrower code is easier for some people to grok (personally I let my lines run as long as they need) I d …
11
votes

How do I keep Python print from adding spaces ?

Greg is right-- you can use sys.stdout.write Perhaps, though, you should consider refactoring your algorithm to accumulate a list of <whatevers> and then lst = ['h', ' …