Guest User

Untitled

a guest
Oct 18th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. print binascii.a2b_hex("0xffffff00")
  2.  
  3. print bytearray.fromhex("ffffff00").decode()
  4.  
  5. mystring = "0xffffff00"
  6. print mystring.decode('hex')
Advertisement
Add Comment
Please, Sign In to add comment