j
k
j a
j l
10.10.21 17:19, Facundo Batista пише:
I have a long list of nums (several millions), ended up doing the following: struct.pack_into(f'{len(nums)}Q', buf, 0, *nums)
I have a long list of nums (several millions), ended up doing the following:
struct.pack_into(f'{len(nums)}Q', buf, 0, *nums)
Why not use array('Q', nums)?
Back to the thread
Back to the list