'How to convert list of Hex values into Ascii string in python?

I have a list of Hex value variables in my python code.

I need to convert into ASCII string.

Can someone please suggest to me, how to convert it?

HexList = ['0x0', '0x30', '0x32', '0x31', '0x30', '0x42', '0x32', '0x33', '0x38', '0x30', '0x30', '0x30', '0x31', '0x30', '0x32','0x43','0x30']

Expected value of Ascii string after the conversion= 0210B238000102C0



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source