import csv data = list() f = open("F:\/csv/image_list.csv",'r') rea = csv.reader(f) for row in rea: data.append(row) f.close csv를 import ...
確定! 回上一頁