单项选择题

A.with open(file,’w’)as f:f write(content)
B.file.write(content)
C.open(file,’w’).write(content)
D.A和C都对