Steve Holden a écrit :
Bruno Desthuilliers wrote:
[...]
if you only want the first returned value, you can just apply a slice:

def f():
   return 1,2,3

a = f()[0] + 1

<nit>That isn't a slice, it's indexing</nit>

Yeps, sorry - and thanks for the correction.
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to