在Python中,给定以下读取文件的代码:
file = open('score.csv','r') name = file.read().strip('\n').split(',') file.close()
正确
错误