这是一个 Python 101 类型的问题,但当我尝试使用一个似乎将我的字符串输入转换为字节的包时,它让我困惑了一段时间。
正如您将在下面看到的那样,我为自己找到了答案,但我觉得值得在这里记录,因为我花了很长时间才发现正在发生的事情。它似乎对 Python 3 是通用的,所以我没有提到我正在使用的原始包;它似乎不是一个错误(只是特定包的.tostring()
方法显然没有产生我所理解的字符串......)
我的测试程序是这样的:
import mangler # spoof package
stringThing = """
<Doc>
<Greeting>Hello World</Greeting>
<Greeting>你好</Greeting>
</Doc>
"""
# print out the input
print('This is the string input:')
print(stringThing)
# now make the string into bytes
bytesThing = mangler.tostring(stringThing) # pseudo-code again
# now print it out
print('\nThis is the bytes output:')
print(bytesThing)
这段代码的输出给出了这个:
This is the string input:
<Doc>
<Greeting>Hello World</Greeting>
<Greeting>你好</Greeting>
</Doc>
This is the bytes output:
b'\n<Doc>\n <Greeting>Hello World</Greeting>\n <Greeting>\xe4\xbd\xa0\xe5\xa5\xbd</Greeting>\n</Doc>\n'
因此,需要能够在字节和字符串之间进行转换,以避免最终将非 ascii 字符变成 gobbledegook。