Skip to content

Instantly share code, notes, and snippets.

@raoofnaushad
Created November 23, 2020 06:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raoofnaushad/b2f9f85030a7f69c9db38b832f6b166d to your computer and use it in GitHub Desktop.
Save raoofnaushad/b2f9f85030a7f69c9db38b832f6b166d to your computer and use it in GitHub Desktop.
Soundex python
import fuzzy
from common import names
soundx = fuzzy.Soundex(4)
for each in names:
print("Name =>> {} and Conversion =>> {}".format(each, soundx(each)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment