本文介绍了怎么用Python说$ a = $ b-> {" A"} || = {}?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好。
我想在更多的succint代码中执行以下操作:
如果b中的k:
a = b [k]
否则:
a = {}
b [k] = a
a [''A''] = 1
在Perl中只有一行:$ a = $ b-> {" A"} || = {}。
谢谢,
杰弗里
Hi All.
I''d like to do the following in more succint code:
if k in b:
a=b[k]
else:
a={}
b[k]=a
a[''A'']=1
In perl it is just one line: $a=$b->{"A"} ||={}.
Thanks,
Geoffrey
推荐答案
b。 setdefault(k,a)
-
劳伦斯,oluyede.org - neropercaso.it
很难让男人理解
一些当他的工资取决于不是
理解它时 - 厄普顿辛克莱
b.setdefault(k, a)
--
Lawrence, oluyede.org - neropercaso.it
"It is difficult to get a man to understand
something when his salary depends on not
understanding it" - Upton Sinclair
这篇关于怎么用Python说$ a = $ b-> {" A"} || = {}?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!