Simple Text Editor- Python Project for Class 12
Simple 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 name: ") target =…
Bank Management- Python Project for class 12 MySQL Connectivity
Bank Management- Python Project Class 12 Source Code: #https://cbsepython.in print("****BANK TRANSACTION****") #creating database import mysql.connector mydb=mysql.connector.connect (host="localhost",user="root", passwd="admin")…
Rainbow Generator-Python Program for Class 12
Rainbow Generator-Python Program Source Code: import turtle colours=['#801ED0','#962CE4','#912CE2', '#7C21D4','#731FCF', '#6113C1','#4005AD','#2B049F', '#28039E','#060390', '#00038E','#001C9A','#0033A8', '#014AB3','#0094DE'…
Simple Calculator- Python Project for Class 11
Simple Calculator- Python Project for Class 11 Source Code: #Creater info print("cbsepython.in:") print(" covering all content for the cbse computer science students ") print(" ") print("These Are the folowing set of Operations you can use :)") print("+…
Cricket Game- Python Project for CBSE Class 12
Cricket Game- Python Project for CBSE Class 12 Source Code: # Cricket Game print(""" ~~~~~~~~~~ Game of Cricket ~~~~~~~~~~ Instructions: 1. You have to select any random number from 1 to 6. 2. The computer will also select a number. 3. While…
Number System Converter- Python Project for CBSE Class 11
Number System Converter- Python Project Source Code: # -*- coding: utf-8 -*- """ @author: cbsepython """ while 1>0: inp=int(input("enter the number:")) org=int(input("enter it base:")) to=int(input("enter the base in which it is to be converted:"))…