1.DictionarySearch.py

 All my Python Exercises available are here :

1.DictionarySearch

oxdict = { "Belie" : "To give a false representation to, or misrepresent",
"Arrant" : "Complete and wholly",
"Untoward" : "Inconvenient",
"Byzantine" : "Complex and intricate",
"Conciliate" : "To make peace with",
"Equivocate" : "To speak vaguely, with the intention of misleading someone",
"Abnegation" : "Renouncing a belief or doctrine",
"Aggrandize" : "Aggrandize",
"Alacrity" : "Eagerness",
"Anachronistic" : "Misplaced chronologically",
"Archetypal" : "Quintessential of a certain kind"}
word = str(input("Ask meaning of any word form the top 10 difficult words list:"))
if word in oxdict.keys():
meaning = oxdict.get(word)
print(meaning)
else:
print("word not found the dictionary")

Comments

Popular posts from this blog

3.FaulyCalculator.py

11.Snake Water Gun Game.py

15.PyStopWatch.py