Python Project : TIC TAC TOE Game GUI using Tkinter.
from tkinter import * window = Tk() window.title('TIC TAC TOE GAME') def display_x_or_o(button): current_text=button["text&...
from tkinter import * window = Tk() window.title('TIC TAC TOE GAME') def display_x_or_o(button): current_text=button["text&...
from turtle import * #Function to draw the box of given size and color def box(size,color): pd() fillcolor(color) b...
Excel Addins Download by Clicking Here to download the randomData addin file
Full Course Test (SET - 4) Click to give the online test
Full Course Test Click to give the online test
Give Revision Test - Ch-1 to Ch-5 Click here or on Image to Give Test
#include<stdio.h> #include<string.h> int main() { char str[20]; int n, i, j, k=1, tmp; printf("Enter any string...
//Enter the Number of words and combine them into sentence. #include<stdio.h> #include<string.h> int main() { int n, i; ...
#Table of N n=int(input('Enter N to print its table:')) for i in range(1,11): print('{} x {} = {}'.format(n,i,n*i))
#include<iostream> using namespace std; struct Node { int data; struct Node *next; struct Node *prev; }; struct Node *head = NUL...
Dec2Oct { public static void main(String args[]) { int decN=2520, octN=0, i=1, j, tmp; tmp=j=decN; while(j>0) { octN=...
Download the File. Click here to Watch the Explanation & Developing Video