J'ai un peu de mal de tête dans une liste de dicts.
def funk(x):
for i in x:
i['a'] += 1
print i
list1 = [{'a':1, 'b':2}, {'a':3, 'b':4}]
funk(list1)
print list1
cela produira un résultat :
{'a': 2, 'b': 2}
{'a': 4, 'b': 4}
[{'a': 2, 'b': 2}, {'a': 4, 'b': 4}]
mais je veux avoir ça :
{'a': 2, 'b': 2}
{'a': 4, 'b': 4}
[{'a':1, 'b':2}, {'a':3, 'b':4}]
Comment puis-je faire list1
restent intacts ? eg : [{'a':1, 'b':2}, {'a':3, 'b':4}]