第二十八課

一、代碼一 import csv fileName = "test.csv" with open(fileName, "r", encoding="utf-8") as f: text = csv.reader(f) for line in text: for i in line: print(i) with open(fileName, "
相關文章
相關標籤/搜索