python_dict
目次
Python dict
since 2012-05-08
python の dict 型で php の array_merge みたいなことをやるには?
http://d.hatena.ne.jp/cheeseshop/20090530/1243677621
>>> d = {"a":"b"} >>> d.update({"c":"d"}) >>> print d {'a': 'b', 'c': 'd'}
python_dict.txt · 最終更新: 2012/05/08 14:56 by Takuya Nishimoto