以下命令中,同时拥有读和写权限的是
A: textfile = open( 'exampleFile.txt', 'rb+' )
B: textfile = open( 'exampleFile.txt', 'rt+' )
C: textfile = open( 'exampleFile.txt', 'ab' )
D: textfile = open( 'exampleFile.txt', 'ab+' )
A: textfile = open( 'exampleFile.txt', 'rb+' )
B: textfile = open( 'exampleFile.txt', 'rt+' )
C: textfile = open( 'exampleFile.txt', 'ab' )
D: textfile = open( 'exampleFile.txt', 'ab+' )
举一反三
- #读、写文件内容fp=open('2.c', mode=______)txt=fp.read(10)fp.seek( 0 )______.write( 'new text' )fp.close()
- textfile=open("c:\\hamlet.txt",rt).上面语句中第1个"\"表示的含义是( ) A: 表示语句的续行 B: 文件的路径 C: 转义符号 D: 表示语句的换行
- 文件test.txt在当前程序所在目录中,文本内容为123,代码如下: txt=open("test.txt","r")print(txt)txt.close()输出结果是( )。 A: 123 B: ['123'] C: 出错 D: txt
- 文件book.txt在当前代码所在目录内,其内容是一段文本:book,以下代码的输出结果是______。 txt=open("book.txt","r") print(txt) txt.close() A: book.txt B: txt C: 非其他答案 D: book
- 文件book.txt在当前代码所在目录内,其内容是一段文本:book,以下代码的输出结果是______。txt=open("book.txt","r")print(txt)txt.close() A: 非其他答案 B: book.txt C: txt D: book