要读取下图“书目.csv”文件的全部内容,小明编写了后面4行代码。请问,红色①处,应该填写哪种打开模式?( )
f = open("书目.csv" , ① ) a = f.read() print(a) f.close
"w"
"a"
"r"
"a+"