[pyar] Pattern matching de tuplas en funciones

Facundo Batista facundobatista en gmail.com
Mie Nov 11 18:09:03 ART 2015


2015-11-11 12:18 GMT-03:00 Lucas Liendo <mindmaster en gmail.com>:
> Ohhhh :-(
>
> 2015-11-11 12:13 GMT-03:00 Daniel Moisset <dmoisset en machinalis.com>:
>>
>> Ojo que eso se sacó en python 3

No te pongas tan triste! Sólo se sacó de la definición de la función,
lo podés hacer afuera:

>>> def pm(*x):
...   (a, _), (c, d) = x
...   return a + c, d
...
>>> print(pm((1, 2), (3, 4)))
(4, 4)

Slds.

-- 
.    Facundo

Blog: http://www.taniquetil.com.ar/plog/
PyAr: http://www.python.org/ar/
Twitter: @facundobatista


More information about the pyar mailing list