I am using fuzzywuzzy token_set_ratio to match 2 strong. I want to know the tokens that were matching. Is there a function in fuzzywuzzy to do so?
String1="this is a banana tree" String2="there is banana tree next to my house"
the token_set_ratio in this case is : 85
the matching tokens would be banana,tree,is I want to this as list
I want the output to be [banana,tree,is]