I have a string like this: '{}, {space}'. Where I want to add/impute only the first value without touching the second ({space}) one.
But when i am doing like this: '{}, {space}'.format(1), this is giving me error like: KeyError: 'space'.
Please help.