I have two strings, let's say:
a = "Hello, I'm Daniel and 15 years old."
b = "Hello, I'm (name) and (age) years old."
And now I want python to find the replaced words. It can be something like this:
{"name": "Daniel", "age": "15"}
I never found a solution! Thank you very much for your help!