Spaces:
Running
Running
File size: 558 Bytes
72049af ca46a75 72049af ca46a75 72049af |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import csv
def csv_to_size_list(csv_file: str) -> dict:
# 初始化一个空字典
size_list_dict = {}
# 打开 CSV 文件并读取数据
with open(csv_file, mode="r", encoding="utf-8") as file:
reader = csv.reader(file)
# 跳过表头
next(reader)
# 读取数据并填充字典
for row in reader:
size_name, h, w = row
size_name_add_size = "{}\t\t({}, {})".format(size_name, h, w)
size_list_dict[size_name_add_size] = (int(h), int(w))
return size_list_dict
|