卅向东 发表于 2021-1-29 22:10:52

关于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呢

wp231957 发表于 2021-1-29 22:20:00

byte型数据

jackz007 发表于 2021-1-29 22:25:01

      byte 型数据必须经过编码才能成为字符串。
print ( str . encode('ASCII'))
页: [1]
查看完整版本: 关于print输出的不解