第13434题 单选
运行给定Python追加写入代码后,example.txt文件的最终内容是什么?
with open("example.txt", "a") as file:
    file.write("I see you.")

example.txt原有内容为:

      This is an example.
A

This is an example.

B

I see you.

C

This is an example.I see you.

D

I see you.This is an example.

提交0次 正确率0.00%
答案解析