Why not python implicit line continuation on period? -


is there reason python not allow implicit line continuations after (or before) periods? is

data.where(lambda d: e.name == 'obama').     count()   data.where(lambda d: e.name == 'obama')     .count() 

does conflict feature of python? rise of method chaining apis seems nice feature.

both of situations can lead valid, complete constructs, continuing on them complicate parser.

print 3.   1415926  print 'hello, world'   .lower() 

Comments

Popular posts from this blog

asp.net - repeatedly call AddImageUrl(url) to assemble pdf document -

java - Android recognize cell phone with keyboard or not? -

iphone - How would you achieve a LED Scrolling effect? -