Commit 48e6a451 by BellCodeEditor

auto save

parent 3faf4b37
Showing with 13 additions and 2 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
...@@ -6,3 +6,4 @@ ...@@ -6,3 +6,4 @@
波奇,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
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