file=open('fruits.csv','r')
name=file.read().strip('\n').split(',')
file.close()
上述代码的功能是读取文件中的数据到列表。( )