SyntaxFix
Write A Post
Hire A Developer
Questions
In Python 2:
>>> "7061756c".decode("hex") 'paul'
In Python 3:
>>> bytes.fromhex('7061756c').decode('utf-8') 'paul'