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
Post a Comment