若要对E盘下myfile目录中的文本文件abc.txt进行读操作,则文件打开模式应为()。
若要对E盘下myfile目录中的文本文件abc.txt进行读操作,则文件打开模式应为()。
A、open("e:\myfile\abc.txt","x")
B、open("e:\myfile\abc.txt","r")
C、open("e:\myfile\abc.txt","r+")
D、open("e:\myfile\abc.txt","rb")
正确答案:open("e:\myfile\abc.txt","r")