I'm new to python, I'm trying to append result from my iteration loop that give out different number of keys each time in the loop .. something like
result i=1 => {key1:a, key2:b}
result i=2 => {key2:c, key3:d , key4:z}
I want my result to be a dataframe something like
key1 key2 key3 key4
a b None None
None c d z
what is the most efficient way to do something
for i in range(10):
do something
result dict
combine