import csv
with open('test.csv','rb') as file:
rows = csv.reader(file,
delimiter = ',',
quotechar = '"')
data = [data for data in rows]
这是Python: reading in a csv file and saving columns as variables。我无法评论,但我真的很困惑。什么' rb'意思?