标签: python
我正在读取格式为city1, city2, the distance between those two cities的CSV文件
city1, city2, the distance between those two cities
a,b,100 b,c,200
如果我从命令行获取了参数a and c,那么如何计算a and c的距离。
a and c
我的方法是首先找到邻近城市的距离,然后继续直到到达所需的城市并返回累计和。
我坚持下去,你们能帮我吗?