Luke Paireepinart, 03.05.2010 10:27:
On Mon, May 3, 2010 at 1:49 AM, Stefan Behnel wrote:
                line = line.split('%', 1)[0]

lines = [line[:line.index('%')] for line in ...

Agreed that

    line = line[:line.index('%')]

is slightly more readable than

    line = line.split('%', 1)[0]

Stefan

_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to