I would like to store the multiple dict inside the list. dict has the same key.
>>> m = {}
>>> l = [] 
>>> for i in range(4):                                                                                                                                                  
...     m["i"] = i+2                                                                                                                                                    
...     m["j"] = i+5                                                                                                                                                    
...     l.append(m)                                                                                                                                                     
...                                                                                                                                                                     
>>> print(l)                                                                                                                                                            
[{'i': 5, 'j': 8}, {'i': 5, 'j': 8}, {'i': 5, 'j': 8}, {'i': 5, 'j': 8}] 
But, I want to know store as below 
[{'i': 2, 'j': 5}, {'i': 3, 'j': 6}, {'i': 4, 'j': 7}, {'i': 5, 'j': 8}]
 
     
     
    