KBC Quiz Game in Python for Class 11
KBC Quiz Game in Python for Class 11 This project will help the students of class 11 to better understand the concept of list and random function. Features of KBC Quiz Game in Python : → User will Read more
Learn CBSE PYTHON
KBC Quiz Game in Python for Class 11 This project will help the students of class 11 to better understand the concept of list and random function. Features of KBC Quiz Game in Python : → User will Read more
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
Last updated on March 11th, 2023 at 09:04 pmCar Race Python Project using pygame Source Code: import pygame, sys from pygame.locals import * import random, time #Initialzing pygame.init() #Setting up FPS FPS = 60 FramePerSec = pygame.time.Clock() #Creating colors Read more
Real Time Currency Converter Python Project Class 12 Source Code: #Python Project Currency Converter import requests from tkinter import * import tkinter as tk from tkinter import ttk class RealTimeCurrencyConverter(): def __init__(self,url): self.data = requests.get(url).json() self.currencies = self.data[‘rates’] def Read more
How to draw Indian Flag Using Turtle Python Program Source Code: import turtle from turtle import* #for output screen screen = turtle.Screen() # Defining a turtle Instance t = turtle.Turtle() speed(-2) # initially penup() t.penup() t.goto(-400, 250) t.pendown() # Read more
Last updated on February 16th, 2023 at 10:43 pmLibrary Management System Python Project for Class 12 # Python Project Library Management System us MySql Connectivity. import mysql.connector as sqlctr import sys from datetime import datetime mycon = sqlctr.connect(host=’localhost’, user=’root’, Read more
Last updated on February 16th, 2023 at 10:49 pmBook Store Management Python Project for Class 12 #Python Project for class 12 Computer Science, using mySQL connectivity. Note: If you found something wrong or unable to execute the program kindly Read more
Last updated on January 25th, 2022 at 10:13 pmCOVID-19 Data Visualization Python Project Class 12 # Python Project for Class 12 Informatics Practices (065), Python MySQL program containing bar graph, line chart, scatter chart Note: If you found something Read more
Last updated on March 1st, 2022 at 10:32 pmHospital Management System Python Project Class 12 Software requirements Operating system : windows 10 Python 3 : for execution of program Mysql : for storing data in the database Python – Read more
Last updated on February 16th, 2023 at 10:53 pmATM Management Python Project for Class 12 #!/usr/bin/python #cbsepython.in import getpass import string import os # creating a lists of users, their PINs and bank statements users = [‘jitendra’, ‘sunny’, Read more
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
Last updated on February 9th, 2022 at 11:22 pmHospital Management System Using MySQL Connectivity and Tkinter GUI Python Project Hospital Management System is a simple project developed in Python. Hospital Management System is a simple GUI based Desktop Application in Read more
Last updated on September 29th, 2021 at 10:10 pmAlarm Clock Python Project for Class 12 Source Code: # https://cbsepython.in/ # Alarm Clock “””Simple Python script to set an alarm for a specific time. When the alarm goes off, Read more
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
Last updated on January 25th, 2022 at 11:21 amSimple Text Editor- Python Project for Class 12 Source Code: #https://cbsepython.in import sys import os import shutil def leave(): sys.exit(“You are exiting from Editor”) def read(): try: file_name = input(“Enter file Read more