Sunday, November 8, 2020

DICTIONARY

 #THIS CODE IS WRITEN BY ASHUTOSH 

print("PYTHON DICTIONARY")
dicto ={
    "ASHUTOSH""A WRITER OF THIS CODE",
    "A":"the first letter of the alphabet",
    "a":"the first letter of the alphabet",
    "abandon":"to leave someone or something",
    "abbreviate":"to make a word or phrase shorter",
    "abbreviation":"a shorter form of a word or phrase",
    "abdomen":"the front lower part of your body that has your stomach and other parts in it",
    "ability":"the skill or qualities that you need to do something",
    "able":"to have the ability, power, opportunity, time, etc. to do something",
    "abnormal":"not normal",
    "aboard":"adverb , preposition",
    "abolish":"to end a low or system",
    "abolition":"when a law or system is ended",
    "about":"relating to a particular subject",
    "above":"in a higher position than something else",
    "abroad":"in or to a different country",
    "abrupt":"sudden",
    "absence":"a time when you are not in place",
    "absent":"not in place, especially school or work",
    "absent-minded":"often forgeting things"
}

word = input("ENTER YOUR WORD\n")
b = (dicto[word])
print(keys+b)

No comments:

Post a Comment