f=open("test.txt","wt") f.write("abc") f.seek(2,0) f.write("123") f.close() 程序时错误的,因为seek只能用在二进制文件操作中
f=open("test.txt","wt") f.write("abc") f.seek(2,0) f.write("123") f.close() 程序时错误的,因为seek只能用在二进制文件操作中
f.seek(0, 0)可以让文件指针回到f指向的文件开头。
f.seek(0, 0)可以让文件指针回到f指向的文件开头。
f.seek(0, 0)可以让文件指针回到f指向的文件开头。 A: 正确 B: 错误
f.seek(0, 0)可以让文件指针回到f指向的文件开头。 A: 正确 B: 错误
执行下列语句如果会报错,错误在第几行? f=open("w.txt","w+") f.write("Lux et Veritas") f.seek(4,1)
执行下列语句如果会报错,错误在第几行? f=open("w.txt","w+") f.write("Lux et Veritas") f.seek(4,1)
打开一个文本文件,f=open(‘test.txt’,‘r+’);则f.seek(5)表示在打开的文件里寻找数字5。
打开一个文本文件,f=open(‘test.txt’,‘r+’);则f.seek(5)表示在打开的文件里寻找数字5。
使用()可以将当前文件操作指针指向文件结尾 A: seek(0) B: seek(-1) C: seek(1) D: seek(2)
使用()可以将当前文件操作指针指向文件结尾 A: seek(0) B: seek(-1) C: seek(1) D: seek(2)
How to find out the key point quickly during the process of discovering problems: ( ) A: Seek the critical point B: Seek the hot point C: Seek the exciting point D: Seek the painful point
How to find out the key point quickly during the process of discovering problems: ( ) A: Seek the critical point B: Seek the hot point C: Seek the exciting point D: Seek the painful point
下列程序的输出结果是()。f=open('out.txt','w+')f.write('Python') f.seek(0)c=f.read(2) print() f.close() A: Pyth B: Python C: Py D: th
下列程序的输出结果是()。f=open('out.txt','w+')f.write('Python') f.seek(0)c=f.read(2) print() f.close() A: Pyth B: Python C: Py D: th
若文件是RandomAccessFile的实例f,并且其基本文件长度大于0,则下面的语句实现的功能是( )。 f.seek(f.length()-1);
若文件是RandomAccessFile的实例f,并且其基本文件长度大于0,则下面的语句实现的功能是( )。 f.seek(f.length()-1);
下列程序的输出结果是()。f=open("w.txt","w+")f.write("LuxetVeritas")f.seek(7)s=f.read(3)f.close()print(s) A: tas B: Lux C: eri D: Ver
下列程序的输出结果是()。f=open("w.txt","w+")f.write("LuxetVeritas")f.seek(7)s=f.read(3)f.close()print(s) A: tas B: Lux C: eri D: Ver