以只读方式打开 d:\myfile.txt 文件的代码是?()
f=open("d:\\myfile.txt")
f=open("d:\\myfile.txt","rt+")
f=open("d:\\myfile.txt","r+")
f=open("d:\\myfile.txt","a")