第11643题 单选
Python中指定w+模式的文件操作代码执行结果是什么?
with open('test.txt', 'w+') as f:
    f.write('HelloWorld')
    f.seek(5)
    print(f.read(2))
A

He

B

Wo

C

or

D

报错