Chatbot or chatterbot is a software program that simulates conversations made by humans through voice or text chats. It is more commonly used in messaging applications. As we all know Alexa, Zo chatbot, Faketalk, Watson Assistant are some of the chatbots built on Artificial Intelligence and Natural Language Processing. Here am gonna show you how to create a chatbot, to open a system application on your device using python. Steps to follow First import the modules needed to make a chatbot. Then make the chatbot get input from the user ie., to which application he/she needs to open. Next, make the chatbot react to the user input by opening an application specified by the user. Make the chatbot work again and again until the user specifies to "quit". Modules needed Modules needed to build a chatbot are: pyttsx3 module os module pyttsx3 module Modules are nothing but a library that consists of reusable code that performs desired function when it gets invoked. It can be invoked i...