From 69a121205453aee833a33f8b1c7128d745443e23 Mon Sep 17 00:00:00 2001 From: XxThunderBlastxX Date: Sat, 8 Oct 2022 20:49:44 +0530 Subject: [PATCH] added a command --- Alexa.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Alexa.py b/Alexa.py index 993a8a5..8ebd427 100644 --- a/Alexa.py +++ b/Alexa.py @@ -312,6 +312,9 @@ def call_Anuja(): elif 'where can I add my own questions and replies for you?' in command: cmd = talk('In the Github repository named Answering machine made by Anuja2512, you can edit the super-simple python code here.') print('Here: \'https://github.com/Anuja2512/Answering_Machine/blob/main/Alexa.py\'') + 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/\'') else: default = talk('I am sorry, I did not understand ') print(default)