-->
当前位置:首页 > 题库

单选题:以下哪一项可以正确打开users.txt文件写入数据?

Luz5年前 (2021-05-10)题库3518
以下哪一项可以正确打开users.txt文件写入数据?
@[C](2)

A. outfile = open('w', users.txt)
B. outfile = write('users.txt', 'w')
C. outfile = open('users.txt', 'w')
D. outfile = open('users.txt')



A.outfile = open('w', users.txt)
B.outfile = write('users.txt', 'w')
C.outfile = open('users.txt', 'w')
D.outfile = open('users.txt')


答案:C