On copying arrays

bearophileHUGS at lycos.com bearophileHUGS at lycos.com
Sun Mar 23 21:42:48 EDT 2008


ernesto:

best = list(test)

may be faster than:

best = [x for x in test]

Bye,
bearophile



More information about the Python-list mailing list