iris_data=[]
with open("F:\专业课程作业\python时空数据分析与可视化\iris.csv","r") as f:
#使用csv.reader读取f中的文件
csv_reader=csv.reader(f)
#读取第一行各列的标题
birth_header=next(csv_reader)
#将数据存入列表中
for row in csv_reader:
iris_data.append(row)
iris_data
3.数据清洗:去掉索引号
# 3.数据清洗:去掉索引号
iris_list=[]
for row in iris_data:
iris_list.append(tuple(row[1:]))
iris_list