Skip to content

Commit

Permalink
24 feb
Browse files Browse the repository at this point in the history
  • Loading branch information
SohamRatnaparkhi committed Feb 24, 2022
1 parent 412ff00 commit a6b7988
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project_Basic_struct/VoiceAssistant_main.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def main():
elif "text to speech" in query:
tts()
time.sleep(4)
#print_menu()


elif "search on google" in query or "search google" in query or "google" in query:
google_search()
Expand Down
2 changes: 1 addition & 1 deletion Project_Basic_struct/speakListen.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def greet(g):
text = "Hello ! Good Afternoon "
elif h < 12 and h > 0:
text = "Hello! Good Morning "
elif h > 17 :
elif h >= 17 :
text = "Hello! Good Evening "
text += " I am Python, How may i help you ?"
speak(text)
Expand Down

0 comments on commit a6b7988

Please sign in to comment.