首页 新闻 会员 周边 捐助
0
回答数

已关闭问题 为什么python中read(N)却返回N-1个字符

fo = open("01.txt", "r+",encoding='utf-8') str = fo.read(5) print ("读取的字符串是 : ", str) fo.close()