第13371题 单选题
运行给定Python代码的输出结果是什么

初始myfile.txt文件内容如下:

          Hello World!

待运行Python代码:

with open("myfile.txt", "w") as out_file:
    out_file.write("This is my first Python program.")
with open("myfile.txt", "r") as in_file:
    myfile = in_file.read()
print(myfile)
A

Hello World!

B

This is my first Python program.

C

Hello World! This is my first Python program.

D

Hello World!This is my first Python program.

程序运行统计
暂无判题统计
提交0次 正确率0.00%
答案解析