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