第26485题 单选
Python复制图片文件的open函数读写模式填空

题目配图的Python复制图片代码如下:

sourceFile = open("CCF.png", "__________")
sourceData = sourceFile.read()
sourceFile.close()

targetFile = open("CCF_bak.png", "__________")
targetFile.write(sourceData)
targetFile.close()
A

rb wb

B

r w

C

r+ w+

D

a+ a+

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