I have a hex string like:
data = \"437c2123\"
I want to convert this string to a sequence of characters according to the ASCII table. The
Since Python 2.6 you can use simple:
data_con = bytes.fromhex(data)