User form form using Tkinter Python February 16, 2022 User Info Form from tkinter import * win = Tk () win . title ( "Form" ) win . configure ( background = "#94ebe9" ) ...Read More
Diamond star series with python February 16, 2022 Diamond Star Series stars = int ( input ( "How many columns do you want of stars: " )) for i in range ( stars , - 1 , - 1 ): ...Read More
Pyramid star series with python February 16, 2022 Pyramid Star Series stars = int ( input ( "How many columns do you want of stars: " )) for i in range ( stars , - 1 , - 1 ): ...Read More
Converting Image to Sketch with Python February 16, 2022 Image to Sketch import cv2 image = cv2 .imread( r "D:\image.jpg" ) grey_img = cv2 .cvtColor( image , cv2 .COLOR_BGR2GRAY) inve...Read More
Rock, Paper, Scissors Game with Python February 16, 2022 Rock, Paper, Scissors import random r_p_s = [ "Rock" , "Paper" , "Scissors" ] ran = random . choice ( r_p...Read More
Snake Game February 06, 2022Snake Game Using Python Turtle from tkinter import StringVar , Tk , Label , Button , Radiobutton , messagebox import random import turt...Read More