[pyar] Listas/desordenar
Sebastian Bassi
sbassi en clubdelarazon.org
Dom Jun 27 20:38:40 ART 2010
2010/6/27 Martin Cerdeira <martincerdeira en gmail.com>:
> Pregunta corta, tengo una list con N elementos, lo que quiero es hacer un
> shuffle. Se puede?
sbassi en sbassi-msi:~$ python
Python 2.6.2 (release26-maint, Apr 19 2009, 01:56:41)
[GCC 4.3.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> a=[1,2,3,4,5]
>>> from random import shuffle
>>> shuffle(a)
>>> a
[3, 2, 5, 4, 1]
More information about the pyar
mailing list