相关疑难解决方法(0)

解构 - 绑定字典内容

I am trying to 'destructure' a dictionary and associate values with variables names after its keys. Something like

params = {'a':1,'b':2}
a,b = params.values()
Run Code Online (Sandbox Code Playgroud)

But since dictionaries are not ordered, there is no guarantee that params.values() will return values in the order of (a, b). Is there a nice way to do this?

python sorting dictionary

45
推荐指数
10
解决办法
2万
查看次数

标签 统计

dictionary ×1

python ×1

sorting ×1