Skip to content

Instantly share code, notes, and snippets.

@jonschoning
Last active January 15, 2023 21:33
Show Gist options
  • Save jonschoning/8916f1a54761b6495c653658023426a9 to your computer and use it in GitHub Desktop.
Save jonschoning/8916f1a54761b6495c653658023426a9 to your computer and use it in GitHub Desktop.
hfmt.py
hfmt=(lambda s0,w=2,j=' ':(lambda s:j.join([s[i:i+w]for i in range(0,len(s),w)]))(s0 if len(s0)%w==0else'0'*(w-len(s0)%w)+s0))
xfmt=lambda v,w=2,j=' ':hfmt("{:x}".format(v),w,j)
bfmt=lambda v,w=4,j=' ':hfmt("{:b}".format(v),w,j)
#xfmt(0xAA)
#bfmt(0XAA)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment