In <[EMAIL PROTECTED]>, Jiang Nutao
wrote:

> To convert list
>     aa = [0x12, 0x34, 0x56, 0x78]
> into
>     [0x34, 0x12, 0x78, 0x56]
> 
> How to do it fast? My real list is huge.

Use the `array` module and the `array.byteswap()` method.

Ciao,
        Marc 'BlackJack' Rintsch
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to