Python AI Assistant
# to open os related functions. import os # To open any site on browser import webbrowser # To use wikipedia commands import wikipedia # Speech recognition module for recognising speech for AI import speech_recognition as sr # This module give the time of the day. import datetime # pyttsx3 is module which is use to give voice and get back from pc. import pyttsx3 # windows contain inbuilt voices that is sapi5. engine = pyttsx3 . init ( 'sapi5' ) voices = engine . getProperty ( 'voices' ) # Voices available in pc appear by index number. # Only one voice available in my...