So I have this dictionary dict that outputs below. It is a variable with multiple dictionaries.
x = {'col1': 1} {'col2': 10}
I'd like to know how can I convert it into the dictionary dict and have the output be
{'col' 1:1, 'col2':10}
So I have this dictionary dict that outputs below. It is a variable with multiple dictionaries.
x = {'col1': 1} {'col2': 10}
I'd like to know how can I convert it into the dictionary dict and have the output be
{'col' 1:1, 'col2':10}