Python Basic Library to Auto-Correct miswritten words by checking them with list of given correct words
Python Basic Library for Auto-Correct purposes using lists.
Download Autolist : pip install autolist
If the above didn’t work, check if Python3 is working properly.
# Import the Module
import autolist as al
# Create a list which has all the correct words OR Take input from user
correct_words_list = ["autolist","advanced","listing"]
string = "autosift" # Take input from user or Give a String
# Autolist checks the list and corrects it using the following
print(al.autocorrect(string, correct_words_list))
We are ready to accept your suggestions.