这是一个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。