• 2022-06-09
    有以下程序 f=open(‘file.txt’ , ’a+’) f.write(‘abc’) f.seek(0,0) s=f.read() print(s) f.close() 若文本文件file.txt中原有内容为“hello”,则运行以上程序后,输出为( )
  • helloabc

    内容

    • 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 random‌​‌​f = 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只能用在二进制文件操作中