1)我有输入字符串,用逗号分隔,该服务器作为键。有一个userDefined方法,该方法将那些用逗号分隔的字符串转换为键,并同时用dict中的值填充。
```
input_string=("'123','456'")
#userdefined method, which returns
a_dict=convertIntoDict(input_string)
print (type (a_dict))
<type 'dict'>
```
上述dict的值如下:
print a_dict
{'123': <Merc:/Tire/Merc/aus>, '456': <Honda:/Tire/Honda/ind>}
我想遍历dict,并且需要没有引号和逗号分隔的输出字符串,例如 输出:
```Merc/aus, Honda/ind```
for ind_values in a_dict.values():
s_i=str(ind_values)
test_s=s_i.split("Instruments/", 1)[1].split(">",1)[0]
print("attempt 1")
print(test_s+",")
test_f +=test_s+","
我想遍历dict,并且需要没有引号和逗号分隔的输出字符串,例如 输出:
Merc/aus, Honda/ind
相反,它显示以下内容,
Merc/aus,
Honda/ind
答案 0 :(得分:0)
将print(test_s +“,”)更改为print(test_s,end =“,”)
答案 1 :(得分:0)
如果我正确理解了您的请求,则下面的代码应该可以工作。
a_dict = {'123': '<Merc:/Tire/Merc/aus>', '456': '<Honda:/Tire/Honda/ind>'}
result = list()
for ind_values in a_dict.values():
s_i=str(ind_values)
item = s_i.split("Tire")[1][:-1]
result.append(item)
print(", ".join(result))
它产生以下输出:
/Merc/aus, /Honda/ind