我有一种具有网络顶点和边缘成本的特定格式的字典,我想通过用户输入来创建它
我想要的python格式是要嵌套的字典:
graph = {'a':{'b':10,'c':3},'b':{'c':1,'d':2},'c'{'b':4,'d':8,'e':2},'d':{'e':7},'e':{'d':9}}
到目前为止的代码:
while True:
graph = dict()
user_input = input("Enter key and value separated by commas (,): ")
key, value = user_input.split(",")
if user_input == "":
break
my_dict[key] = value
结果不是我想要的,因为我要为每个顶点加上成本的多重边缘