sorry new to python, I have done a couple of searches but failed to get the answer I wanted.
So let's say I have a string '3918f33a' but I want my final output to equal to:
output ='\x3a\xf3\x18\x39'
so when I print(output) I will get:
:ó▒9
how do I go about doing that? I have tried to combine "\x"+string[6:8] .. but it will only error out.