细化部分功能
This commit is contained in:
@ -14,6 +14,8 @@ def read_csv(file_path):
|
||||
next(csv_reader)
|
||||
result_row = []
|
||||
for row in csv_reader:
|
||||
if row is None:
|
||||
break
|
||||
result_row.append(row)
|
||||
return result_row
|
||||
return None
|
||||
|
Reference in New Issue
Block a user