I have two lists
a=["USA","France","Italy"]
b=["10","5","6"]
I want the end result to be in json like this.
[{"country":"USA","wins":"10"},
{"country":"France","wins":"5"},
{"country":"Italy","wins":"6"},
]
I used zip(a,b) to join two but couldn't name it
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…