带有cmd的Python str / bytes类型

时间:2016-07-25 19:40:18

标签: python string cmd byte

我编写了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的字节类型的字符串数据。

为什么会这样?我该如何纠正呢?

0 个答案:

没有答案