• 2022-06-06
    如果要对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" )
  • C

    内容

    • 0

      R 语言中,代表注释语句起始的符号是( )。 A: "," B: ";" C: ":" D: " E: "

    • 1

      要求打开文件f:\myfile。dat,并能够写入数据,正确的语句是( )。 A: ofstream outfile("f:\\myfile.dat ", ios::in); B: ifstream infile("f:\\myfile.dat", ios::in); C: fstream infile("f:\\myfile.dat ", ios::in | ios::out); D: ifstream infile("f:\\myfile.dat ", ios::out);

    • 2

      以二进制只读方式打开一个已有的文本文件file1,正确调用fopen函数的方式是( ) A: fp=fopen("file1","rb"); B: fp=fopen("file1","r+"); C: fp=fopen("file1","rb+"); D: fp=fopen("file1","r");

    • 3

      以下正确的字符串是() A: "\" B: 'abc' C: China D: ""

    • 4

      文件test.txt在当前程序所在目录中,文本内容为123,代码如下: txt=open("test.txt","r")print(txt)txt.close()输出结果是( )。 A: 123 B: ['123'] C: 出错 D: txt