关于print输出的不解
从网上拷的以下代码<import os, sys
# 打开文件
fd = os.open( "foo.txt", os.O_RDWR|os.O_CREAT )
# 写入字符串
os.write(fd, "This is test")
# 文件描述符为 1000
fd2 = 1000
os.dup2(fd, fd2);
# 在新的文件描述符上插入数据
os.lseek(fd2, 0, 0)
str = os.read(fd2, 100)
print ( str)
>
得到输出结果是b‘ This is test
这里句首为什么会有一个b呢 byte型数据 byte 型数据必须经过编码才能成为字符串。
print ( str . encode('ASCII'))
页:
[1]