Created
June 12, 2021 13:29
-
-
Save KaushikShresth07/f6059236f5abb8883c9776162b739634 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 PyDictionary import PyDictionary | |
def SynonymGet(Word): | |
diction = PyDictionary() | |
synon = diction.synonym() | |
return synon | |
def AntonymGet(Word): | |
diction = PyDictionary() | |
anton = diction.antonym() | |
return anton | |
def MeanGet(Word): | |
diction = PyDictionary() | |
mean = diction.meaning() | |
return mean | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment