Update app.py
Browse files
app.py
CHANGED
@@ -216,10 +216,9 @@ def greet(name1):
|
|
216 |
name = name1.lower()
|
217 |
|
218 |
dictionary=PyDictionary()
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
return s
|
223 |
|
224 |
|
225 |
if "who are you" in name or "what is you" in name or "your name" in name or"who r u" in name:
|
|
|
216 |
name = name1.lower()
|
217 |
|
218 |
dictionary=PyDictionary()
|
219 |
+
|
220 |
+
|
221 |
+
return "Noun :"+ str(dictionary.meaning(name)['Noun']) + "\nVerb :"+ str(dictionary.meaning(name)['Verb'])
|
|
|
222 |
|
223 |
|
224 |
if "who are you" in name or "what is you" in name or "your name" in name or"who r u" in name:
|