若文本文件abc.txt 中的内容如下: abcde。阅读下面的程序:file= open("abc.txt" ,"r")s=file. readline ()s1 = list(s)print(s1)上述程序执行的结果为()
A. ['abcdef']
B. [‘abcdef\n’]
C. ['a', 'b', 'c', 'd', 'e']
D. ['a', 'b', 'c', 'd', 'e','\n’]
查看答案
一个已有的文件,然后在文件末尾添加信息,正确的打开方式为( )
A. 'r’
B. 'w’
C. 'a’
D. 'w+’
下列选项中,用于向文件中写内容的是()
A. open
B. write
C. close
D. read
假设文件不存在,如果使用open函数打开文件会报错,那么文件的打开方式是下列的那种模式?
A. ‘r’
B. ‘w’
C. 'a’
D. 'w+’
假设file是文本文件对象、下列选项中,哪个用于读取一行内容?
A. file.read()
B. file.read(200)
C. file readline()
D. file.feadlines()