如果要对E盘myfile目录下的文本文件abc.txt进行读操作,文件打开方式应为_______________。 A: open("e:\myfile\abc.txt", "r" ) B: open("e:\myfile\abc.txt", "x" ) C: open( "e:\myfile\abc.txt", "rb" ) D: open("e:\myfile\abc.txt", "r+" )
如果要对E盘myfile目录下的文本文件abc.txt进行读操作,文件打开方式应为_______________。 A: open("e:\myfile\abc.txt", "r" ) B: open("e:\myfile\abc.txt", "x" ) C: open( "e:\myfile\abc.txt", "rb" ) D: open("e:\myfile\abc.txt", "r+" )
如果要对E盘myfile目录下的文本文件abc.txt进行读操作,文件打开方式应为( )。 A: open("e:\\myfile\\abc.txt", "r+" ) B: open( "e:\\myfile\\abtxt", "rb" ) C: open("e:\\myfile\\abc.txt", "r" ) D: open("e:\\myfile\\abc.txt", "x" )
如果要对E盘myfile目录下的文本文件abc.txt进行读操作,文件打开方式应为( )。 A: open("e:\\myfile\\abc.txt", "r+" ) B: open( "e:\\myfile\\abtxt", "rb" ) C: open("e:\\myfile\\abc.txt", "r" ) D: open("e:\\myfile\\abc.txt", "x" )
txt = open(""book.txt"", ""r"") print(txt)txt.close()" "文件 book.txt 在当前程序所在目录内,其内容是一段文本:book,上述代码的输出结果是( ) A: txt B: book C: 其余答案都不对 D: book.txt
txt = open(""book.txt"", ""r"") print(txt)txt.close()" "文件 book.txt 在当前程序所在目录内,其内容是一段文本:book,上述代码的输出结果是( ) A: txt B: book C: 其余答案都不对 D: book.txt
根据Windows7文件命名规则,下列()文件名是合法的。 A: ABC*.TXT B: #ABC%.TXT C: CO D: TXT E: ABC/.TXT
根据Windows7文件命名规则,下列()文件名是合法的。 A: ABC*.TXT B: #ABC%.TXT C: CO D: TXT E: ABC/.TXT
下列方法中,能正确创建 JavaScript 对象的是( )。 A: var txt = new Object[name:"George",price:25] B: var txt = new Object(name:"George",price:25) C: var txt = new Object{name:"George",price:25} D: var txt = new Object({name:"George",price:25})
下列方法中,能正确创建 JavaScript 对象的是( )。 A: var txt = new Object[name:"George",price:25] B: var txt = new Object(name:"George",price:25) C: var txt = new Object{name:"George",price:25} D: var txt = new Object({name:"George",price:25})
以下正确的字符串是() A: "\" B: 'abc' C: China D: ""
以下正确的字符串是() A: "\" B: 'abc' C: China D: ""
不正确的字符串常量是( )。 A: 'abc' B: "12'12" C: "\0" D: " "
不正确的字符串常量是( )。 A: 'abc' B: "12'12" C: "\0" D: " "
如果要列出当前目录以及子目录下所有扩展名为 .txt的文件,可以使用命令( )。 A: find . –name ".txt" B: ls -d .txt C: . ls *.txt D: find .".txt"
如果要列出当前目录以及子目录下所有扩展名为 .txt的文件,可以使用命令( )。 A: find . –name ".txt" B: ls -d .txt C: . ls *.txt D: find .".txt"
文件test.txt在当前程序所在目录中,文本内容为123,代码如下: txt=open("test.txt","r")print(txt)txt.close()输出结果是( )。 A: 123 B: ['123'] C: 出错 D: txt
文件test.txt在当前程序所在目录中,文本内容为123,代码如下: txt=open("test.txt","r")print(txt)txt.close()输出结果是( )。 A: 123 B: ['123'] C: 出错 D: txt
下列语句中,正确的是( )。? char a[ ][3] ={'abc', '1'};|char a[ ][3] ={ "a", "1"};|char a[3][ ]={'abc', '1'};;;|char a[3][ ]={'a', "1"};
下列语句中,正确的是( )。? char a[ ][3] ={'abc', '1'};|char a[ ][3] ={ "a", "1"};|char a[3][ ]={'abc', '1'};;;|char a[3][ ]={'a', "1"};