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...
#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))
OPERATORS: =========== - Unary - Binary Arithmetic Operators ---------------------- + Addition - Subtraction * Multiplication / Divi...
#Binary Search a=[5,7,11,13,16,19,23,27,30,34,38,40,41,42,45] n=len(a) beg=0 last=n-1 print(a) srch=int(input('Enter the number to searc...
''' Following logics in single program. Find the distinct values of array Find the frequency of each number of array. Find all ...
from tkinter import * import tkinter.messagebox #==========================Settings==================== root = Tk() root.geometry('400x1...
pid=[1,2,3,4,5] name=["Pen","Pencil","Eraser","Sharpner","Compass"] qty=[200,400,100,10...
#Function to check the stack is empty or not. def isEmpty(stk): if stk==[]: return True else: return Fa...
#Queue Implementation in Python List #Function to check the queue is empty or not. def isEmpty(Qu): if Qu==[]: retur...
Download the File. Click here to Watch the Explanation & Developing Video