page contents

要打开文件c:scores.txt进行写入,可以使用

轩辕小不懂 发布于 2021-07-10 11:39
阅读 556
收藏 0
分类:Python开发

a)outfile = open(“c:scores.txt”,“r”)
b)outfile = open(“c:scores.txt”,“w”)
c)outfile = open(file =“c:scores.txt “,”r“)
d)outfile = open(file =”c:scores.txt“,”o“)

1255
Nen
Nen
- 程序员

b)该位置包含双斜杠(),w用于表示正在写入文件。

请先 登录 后评论