我如何将一串 ascii 值转换为 python 中的原始 character/number
How do i convert a string of ascii values to there original character/number in python
我有一个包含数字的字符串,我之前用我的编码器转换过,但现在我试图解码它,我四处搜索但似乎没有答案
亲爱的,如果你有任何如何做到这一点,请告诉我
字符串 = 91 39 65 97 66 98 67 99 32 49 50 51 39 93
结果 = ABCabc 123
outcome = "".join([your_decoder.decode(x) for x in string.split(" ")])
我有一个包含数字的字符串,我之前用我的编码器转换过,但现在我试图解码它,我四处搜索但似乎没有答案 亲爱的,如果你有任何如何做到这一点,请告诉我
字符串 = 91 39 65 97 66 98 67 99 32 49 50 51 39 93
结果 = ABCabc 123
outcome = "".join([your_decoder.decode(x) for x in string.split(" ")])