Electronic Configuration Project using Python for Class 11

Electronic Configuration Project

Fun with Chemistry: Electronic Configuration Project using Python for Class 11 CS In this post, we’ll explore a simple Python program that helps you find the electronic configuration of elements using their atomic number or symbol. It’s perfect for learning Python basics like functions, loops, and error handling while diving into a cool chemistry topic. … Read more

Marriage Bureau Management System in Python Project for Class 12

Marriage Bureau Management System in Python This project is a simplified version of a Marriage Bureau Management System in Python, and it covers the basics of working with a MySQL database. Let’s break it down into key components: Database Setup: A database is like a structured Excel sheet that stores information. In this project, we … Read more

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 turtle.setpos (-150, 100) turtle.down() turtle.right(90) turtle.begin_fill() turtle.circle(150, 180) turtle.left(90) turtle.forward (300) turtle.end_fill() turtle.up() turtle.color(“black”) turtle.back(150) … Read more

Car Race Python Project using pygame

car1

Car 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 BLUE = (0, 0, 255) RED = (255, 0, 0) GREEN = (0, 255, 0) BLACK = (0, 0, 0) WHITE = (255, … Read more

Real Time Currency Converter Python Project Class 12

Currency Converter

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 convert(self, from_currency, to_currency, amount): initial_amount = amount if from_currency != ‘USD’ : amount = amount … Read more

Generate QR Code using Python

How to Generate QR Code using Python?   #pip install pyqrcode #pip install pypng # Import QRCode from pyqrcode import pyqrcode import png from pyqrcode import QRCode # String for which website you want to enerate the QR code website_url = “https://cbsepython.in/” # Generate QR code url = pyqrcode.create(website_url) # Create and save the png … Read more

Copywrite © 2020-2025, CBSE Python,
All Rights Reserved