1.常规用法
for i in centers:
2.返回索引和值
for j, center in enumerate(centers)
(j为 1 2 3 ...)
3.同时循环多个文件
for item1,item2 in zip(df1['途径城市'],df1['总里程']):