mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
6 lines
85 B
Python
6 lines
85 B
Python
import struct
|
|
|
|
def wtob(w):
|
|
return struct.pack('<'+'I'*len(w), *w)
|
|
|
|
wtob([12,3])
|