执行 f = open('a.txt', 'a+') 后,通过如下哪个语句可以往a.txt中写入HELLO?
A. f.write('HELLO')
B. f.cout('HELLO')
C. f.read('HELLO')
D. f.scanf('HELLO')
在open函数中使用( )模式可以打开一个文件用于覆盖写入。
A. t
B. w
C. a
D. r
()可以刷新文件内部缓冲,直接把内部缓冲区的数据立刻写入文件。
A. file.isatty()
B. file.fileno()
C. file.flush()
D. file.close()
with open('demo.txt', 'w') as wf: wf.write('hello world') 以上代码的作用是?
A. 以写模式打开当前目录下的文件demo.txt,写入字符串“hello world”,然后关闭文件对象
B. 以读模式打开当前目录下的文件demo.txt,写入字符串“hello world”,然后关闭文件对象
C. 以写模式打开根目录下的文件demo.txt,写入字符串“hello world”,然后关闭文件对象
D. 以读模式打开根目录下的文件demo.txt,写入字符串“hello world”,然后关闭文件对象