关联数组在python中叫字典,非常有用,下面是定义字典的两种方法
# Dictionary with quoted or variable keys
d1 = {"name":"donuts","type":"chocolate","quantity":10}
# Dictionary with fixed keys
d2 = dict(name="donuts",type="chocolate",quantity=10)
assert d1 == d2
希望本文所述对大家的Python程序设计有所帮助。
查看更多关于python创建关联数组(字典)的方法的详细内容...
声明:本文来自网络,不代表【好得很程序员自学网】立场,转载请注明出处:http://www.haodehen.cn/did88627