您可能正在寻找“ chr()”:
>>> L = [104, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 100]>>> ''.join(chr(i) for i in L)'hello, world'

您可能正在寻找“ chr()”:
>>> L = [104, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 100]>>> ''.join(chr(i) for i in L)'hello, world'