all_path = [[[2, 3, 4, 5], [2, 4, 5], [2, 5]],
[[2, 3, 4, 5], [2, 4, 5], [2, 5]],
[[2, 3, 4, 5], [2, 4, 5], [2, 5]],
[[4, 5]],
[[1, 2, 3, 4, 5], [1, 2, 4, 5], [1, 2, 5]]]
s_dict = {1: {'Origin': '002', 'Destination': '005', 'Cost': '0000.00', 'Stops': '99', 'Time': '00.00'},
2: {'Origin': '002', 'Destination': '005', 'Cost': '0000.00', 'Stops': '11', 'Time': '00.00'},
3: {'Origin': '002', 'Destination': '005', 'Cost': '1450.11', 'Stops': '99', 'Time': '00.00'},
4: {'Origin': '004', 'Destination': '005', 'Cost': '1550.11', 'Stops': '99', 'Time': '22.22'},
5: {'Origin': '001', 'Destination': '005', 'Cost': '0000.00', 'Stops': '99', 'Time': '11.00'}}
for tin in range(1,6):
print 'From: '+str(int(s_dict[tin]['Origin']))+','+' to: '+str(int((s_dict[tin]['Destination'])))+','+' Stops: '+(s_dict[tin]['Stops'])+','+' Cost: '+(s_dict[tin]['Cost'])+','+' Time: '+(s_dict[tin]['Time'])
print 'All routes:'
for n in range(len(all_path[tin-1])):
l=''
for s in range(len(all_path[tin-1][n])):
l+= str(all_path[tin-1][n][s])+'->'
print l
这是输出, 我将引用一部分
从:2,到:5,停止:99,费用:0000.00,时间:00.00
所有路线:
2→3→4-将5->
2→4-将5->
2→5→
我的问题是额外的' - > ' 在行尾 我希望它更像是
2→3→4-→5
有没有办法不显示"额外的" ' - > '最后?
答案 0 :(得分:6)
看看join
- 方法:
print '->'.join(str(x) for x in all_path[tin-1][n])
# print '->'.join(map(str, all_path[tin-1][n]))
> print '->'.join(['1', '2', '3']) # '->'.join('123')
1->2->3