Happy Diwali Python Program using Turtle

Happy Diwali Python Program using Turtle

Send Diwali wishes to your loving ones in cool way. Here we get a cool Happy Diwali Python Program using Turtle module.  Happy Diwali Python Program using Turtle   Source Code: import turtle #turtle.Screen turtle.bgcolor(“black”) turtle.up() turtle.color(“red”) turtle.fillcolor(“red”) # Diya Read more

Digital Clock in Python using Tkinter

Last updated on February 2nd, 2022 at 09:38 pmDigital Clock in Python using Tkinter Source Code: import time from tkinter import * root = Tk() root.title(“Digital Clock”) root.resizable() lbl = Label(root) lbl.grid(row=0, column=0) def display(): time_get = time.strftime(“%Y/%m/%d\n%I:%M:%S %p”) lbl.config(text=time_get, Read more

Love Calculator Python Program

Last updated on January 25th, 2022 at 11:20 amLove Calculator Python Program Source Code: #https://cbsepython.in from string import ascii_lowercase import random import time name1 = input(“Please type Your Name >\n”) name2 = input(“Please type Your Crush Name >\n”) vowels = Read more