Last active
March 6, 2026 15:30
-
-
Save jmquintana79/066f3ed632b1542e8425cac3defb8af2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from difflib import SequenceMatcher | |
| def similitud(a, b): | |
| return SequenceMatcher(None, a, b).ratio() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment