"custom_relation.csv"
时间: 2023-07-07 08:39:02 浏览: 89
customer.csv
好的,文件路径已确认。下面是代码实现:
```python
import csv
# 创建一个名为relation的空字典
relation = {}
# 打开csv文件并读取数据
with open("custom_relation.csv", newline='', encoding='utf-8') as csvfile:
reader = csv.reader(csvfile)
next(reader) # 跳过首行
for row in reader:
# 将csv文件中的每一行数据添加到relation字典中
key = row[0]
value = row[1:]
relation[key] = value
```
上述代码会读取名为custom_relation.csv的文件,并将其中的数据存储在一个名为relation的字典中。请确保该csv文件与代码文件在同一目录下,并且csv文件中第一行为表头,不包含数据。
阅读全文