query = ('Hello','bye' , 'yellow')
choices= ('Hello','can', 'sweet' , 'lye' , 'fellow' , 'Hello')
Now I want to use fuzzywuzzy process. Extract() to get the best choice with maximum similarity ratio for all of my queries. And if there are two choices with the same maximum ratio, I want both of them.
My expected output is-- (list for similarity ratio for all my query elements)
('Hello', 100), ('Hello', 100)]
('lye' , 80)
('fellow' , 80 )
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…