python value值怎么上下对齐

country=['俄罗斯','美国','英国']
fee=[11,21,13]
cost=int(input())
total_cost=[(c,f+cost)for c,f in zip(country,fee)]
for res in total_cost:
print(res[0],'总成本:',res[1])

img


如何让总成本上下对齐,看起来美观

country = ['俄罗斯', '美国', '英国']
fee = [11, 21, 13]
cost = int(input(">>>"))
total_cost = [(c,f + cost) for c, f in zip(country, fee)]
for res in total_cost:
    print("{: >3} 总成本:{:<3}".format(*res))

"""--result
>>>5
俄罗斯 总成本:16 
 美国 总成本:26 
 英国 总成本:18 
"""