From 6c6a18f92853d4444d06f434f3bf09d62250bf6f Mon Sep 17 00:00:00 2001 From: Parth Panchal <51155358+hitchhicker007@users.noreply.github.com> Date: Thu, 13 Oct 2022 18:36:31 +0530 Subject: [PATCH] Update Alexa.py --- Alexa.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Alexa.py b/Alexa.py index 8ebd427..35cc32c 100644 --- a/Alexa.py +++ b/Alexa.py @@ -315,6 +315,9 @@ def call_Anuja(): elif 'How to become a better programmer?' in command: cmd = talk('You can get the whole roadmap of programming over here !!') print('Here: \'https://roadmap.sh/\'') + elif 'Tell me best quote?' in command: + cmd = talk('The joy of coding Python should be in seeing short, concise, readable classes that express a lot of action in a small amount of clear code -- not in reams of trivial code that bores the reader to death') + print(cmd) else: default = talk('I am sorry, I did not understand ') print(default)