This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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"); |