Posts

Guess The Number Game Tutorial - Codequest

Image
Guess The Number Tutorial - CodeQuest Preview Today, we are gonna make a basic Guess The Number game using python and the "random" module. It will help you to learn and inculcate the basics of python and game development. This is a beginner friendly tutorial and anyone who knows the mere basics of python can easily follow it and make this project. Step 1: Initialize the variables and the random module Here, we import the random module as rd, then we initiate two variables, won and guessLeft. What these do are pretty self-explanatory and intuitive. Step 2: Set the target number

Jarvis AI Assistant Tutorial - CodeQuest

Image
  Jarvis AI Assistant Tutorial - CodeQuest Preview This Voice Assistant will respond to your commands. It is able to listen and speak to you. It can open applications, play songs, YouTube videos, tell the time and search for people on wikipedia. It is a cool project to add to your CV and resume. You are free to add features as per your own wish and publish it on git or any other platform. It is pretty self-explanatory as ell as intuitive. Lets get right into it.  Step 1: Import the libraries/modules The libraries we will need for this project are: pyttsx3 datetime speech_recognition os wikipedia pywhatkit pyjokes  Now lets import them Step 2: Make it speak First, we will initiate the engine with the voices Then, we would make the function to speak something, along with with declaring a master. Step 3: Make it greet An important function for an assistant like this is to freet the user, when it starts, or boots. Here, it will greet us, according to the time. Step 4: Enable ...