Skip to content

Instantly share code, notes, and snippets.

@Arachnid
Created August 28, 2014 22:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Arachnid/cb86b6a2a50620a7792f to your computer and use it in GitHub Desktop.
Save Arachnid/cb86b6a2a50620a7792f to your computer and use it in GitHub Desktop.
>>> struct.pack("B", 0x38) + struct.pack("H", 0)
'8\x00\x00'
>>> struct.pack("BH", 0x38, 0)
'8\x00\x00\x00'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment