Commit 48e6a451 by BellCodeEditor

auto save

parent 3faf4b37
Showing with 14 additions and 4 deletions
"""读取csv文件""""
\ No newline at end of file
import csv
with open('report.csv',"r",encoding="utf-8") as f:
f_csv = csv.reader(f)
f_csv = list(f_csv)
print(f_csv)
for i in range(0,8):
print(f_csv[i][3])
\ No newline at end of file
...@@ -5,4 +5,5 @@ ...@@ -5,4 +5,5 @@
聪聪,65,76,97,66,73,78,58,66,69 聪聪,65,76,97,66,73,78,58,66,69
波奇,74,67,61,72,66,81,75,79,80 波奇,74,67,61,72,66,81,75,79,80
九尾,88,85,80,78,74,90,81,69,70 九尾,88,85,80,78,74,90,81,69,70
皮皮,77,87,83,69,90,79,71,74,69 皮皮,77,87,83,69,90,79,71,74,69
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment