我编写了python脚本以使用字节数类型的字符串。
简单的脚本:
s = 'Just string';
b = str.encode(s);
print(type(s));
print(type(b));
如果我在python IDLE中运行此脚本,则输出为:
<class 'str'>
<class 'bytes'>
如果我从cmd运行它;它会输出另一个结果。
CMD输出:
<class 'str'>
<class 'str'>
我需要使用带有cmd的字节类型的字符串数据。
为什么会这样?我该如何纠正呢?