Created
January 10, 2014 17:59
-
-
Save shiumachi/8359272 to your computer and use it in GitHub Desktop.
どんなキーが入っているかわからない辞書のリストの整理方法
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
data = [{'a' : 100 , 'b' : 50}, {'a': 120}, {'b': 40}] | |
for i in data: | |
a = i.setdefault('a', 0) | |
b = i.setdefault('b', 0) | |
print("{0},{1}".format(a, b)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment