【简答题】在当前目录存在存在文本文件test.txt,内容是:Life is short, you need Python. is better than complex.执行如下语句,结果字符串是b'_________________'。fp=open('test.txt','rb+',0)fp.readline()fp.seek(10,1)print(fp.readline())fp.clo...
【简答题】在当前目录存在存在文本文件test.txt,内容是:Life is short, you need Python. is better than complex.执行如下语句:fp=open('test.txt','rb+',0)fp.readline()fp.seek(10,1)print(fp.readline())fp.close()