以下语句的执行结果是?( )
with open('A.txt','w+') as f:
f.write('hello')
print(f.read())
C:写到文件txt里一个'hello'字符串并输出一个'hello'字符串
打印'hello'