Skip to content

Instantly share code, notes, and snippets.

@Shih-Po
Created July 24, 2017 07:21
Show Gist options
  • Select an option

  • Save Shih-Po/e11986dac9eeb292b73808d4f5d0fabd to your computer and use it in GitHub Desktop.

Select an option

Save Shih-Po/e11986dac9eeb292b73808d4f5d0fabd to your computer and use it in GitHub Desktop.
from difflib import SequenceMatcher
def similar(a, b):
return SequenceMatcher(None, a, b).ratio()
similar('abc', 'abc')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment