有以下程序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
A: helloabc
B: abclo
C: abc
D: abchello
举一反三
- 有以下程序 f=open(‘file.txt’ , ’a+’) f.write(‘abc’) f.seek(0,0) s=f.read() print(s) f.close() 若文本文件file.txt中原有内容为“hello”,则运行以上程序后,输出为( )
- 有以下程序:#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
- 有以下程序 #include main() { EILE *f; f=fopen(“filea.txt”,”w”); fprintf(f,”abc”); fclose(f); } 若文本文件filea.txt中原有内容为:hello,则运行以上程序后,文件filea.txt中的内容为
- 下列程序的输出结果是()。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