Skip to content

Instantly share code, notes, and snippets.

View sheikhaafaq's full-sized avatar
🎯
Focusing

Sheikh Aafaq Rashid sheikhaafaq

🎯
Focusing
View GitHub Profile
import pyttsx3,os
pyttsx3.speak( " Hi i m jarvis ")
x="Chat with me for your requirements"
while True:
print(x ,end= ': ')
pyttsx3.speak(x)
p = input().lower()
A = ['run','execute','open','launch']
@sheikhaafaq
sheikhaafaq / cross_game.cpp
Created March 27, 2020 08:26
tick cross game
#include <iostream>
#include<stdlib.h>
using namespace std;
char table[3][3]={{'1','2','3'},{'4','5','6'},{'7','8','9'}};
int turn='X';
int column,row;
bool draw = false;
void display_table()
{
system("cls");