Skip to content

Instantly share code, notes, and snippets.

@KaushikShresth07
Created June 12, 2021 13:29
Show Gist options
  • Save KaushikShresth07/f6059236f5abb8883c9776162b739634 to your computer and use it in GitHub Desktop.
Save KaushikShresth07/f6059236f5abb8883c9776162b739634 to your computer and use it in GitHub Desktop.
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