下列程序的输出结果是()。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
A: tas
B: Lux
C: eri
D: Ver
举一反三
- 下列程序的输出结果是()。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
- 下列程序的输出结果是( )。 import os f = open(r'D:\test.txt','w+') f.write('Python') f.seek(0) m = f.read(3) print(m) f.close() A: Pyt B: Python C: yth D: Py
- f=open('c: \ \out.txt’, 'w+')f.write('Python')f.seek(0)c=f.read (2)print(c)f.close(),以上程序的输出结果是( ) A: Python B: th C: Py D: Pyth
- 执行下列语句如果会报错,错误在第几行? f=open("w.txt","w+") f.write("Lux et Veritas") f.seek(4,1)
- 有以下程序 f=open(‘file.txt’ , ’a+’) f.write(‘abc’) f.seek(0,0) s=f.read() print(s) f.close() 若文本文件file.txt中原有内容为“hello”,则运行以上程序后,输出为( )