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”,然后关闭文件对象