We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bfcb525 + 8a50279 commit e6a255aCopy full SHA for e6a255a
Word_meaning/README.md
@@ -0,0 +1,13 @@
1
+# Get the meaning of a english word with this script
2
+
3
+This Script will give you the meaning of an english word.
4
5
+# How to use it.
6
7
+`python3 word_meaning.py`
8
9
+It will ask word for which you want to know the meaning.
10
11
+1.) Enter The word.
12
13
+2.) Outputting the meaning of the word.
Word_meaning/meaning.py
@@ -0,0 +1,11 @@
+from PyDictionary import PyDictionary
+def get_meaning(word):
+ dictionary = PyDictionary()
+ return dictionary.meaning(word)
+if __name__ == "__main__":
+ word = input("Please enter the word: ")
+ print("Word Meaning : " + str(get_meaning(word)))
0 commit comments