有以下程序 f=open(‘file.txt’ , ’a+’) f.write(‘abc’) f.seek(0,0) s=f.read() print(s) f.close() 若文本文件file.txt中原有内容为“hello”,则运行以上程序后,输出为( )
helloabc
举一反三
- 有以下程序f=open(‘file.txt’, ’a+’)f.write(‘abc’)f.seek(0,0)s=f.read()print(s)f.close()若文本文件file.txt中原有内容为“hello”,则运行以上程序后,输出为()。 A: helloabc B: abclo C: abc D: abchello
- 有以下程序:#include <;stdio. h>;main(){ FILE * f;f= fopen( " file a. txt"," w");Frintf( f, " abc");fclose ( f);}若文本文件file a.txt中原有内容为:hello,则运行以上程序后,文件filea. txt中的内容为______。 A: Helloabc B: abclo C: abc D: abchello
- 下列程序的输出结果是()。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('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('out.txt','w+')f.write('Python') f.seek(0)c=f.read(2) print() f.close() A: Pyth B: Python C: Py D: th
内容
- 0
有以下程序 #include main() { EILE *f; f=fopen(“filea.txt”,”w”); fprintf(f,”abc”); fclose(f); } 若文本文件filea.txt中原有内容为:hello,则运行以上程序后,文件filea.txt中的内容为
- 1
文件test.txt的内容是一段文本:hello,与以下代码在同一目录下,程序运行的输出结果是( )。f = open('test.txt')print(f.read(2))f.close( )
- 2
下列程序的输出结果是( )。 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
- 3
import randomf = open(‘data.txt’,‘w+’)for i in range(100000):f.write(str(random.randint(1,100)) + ‘\n’)f.seek(0)print(f.read())f.close()问:创建的data.txt文件中有多少行
- 4
f=open("test.txt","wt") f.write("abc") f.seek(2,0) f.write("123") f.close() 程序时错误的,因为seek只能用在二进制文件操作中