Weather App Using Tkinter & OpenWeatherMap API | CBSE Class 12 Computer Science Investigatory Project

Weather App Using Tkinter   # ============================================================ # WEATHER APP — TKINTER + OPENWEATHERMAP API # CBSE Class 12 Computer Science Investigatory Project # Topics Covered: Tkinter GUI, requests library, JSON parsing, # API integration, File Handling (search history) # ============================================================ # # REQUIREMENTS: # pip install requests # pip install pillow (for icons/images – … Read more

Expense Tracker Project Using Python, CSV, Pandas & Matplotlib with Source Code

Expense Tracker Project Using Python   # ============================================================ # EXPENSE TRACKER # CBSE Class 12 Computer Science / Informatics Practices # Investigatory Project # # Topics Covered: # – File Handling (CSV read/write) # – pandas — DataFrame, filtering, groupby, aggregation # – matplotlib — pie chart, bar chart, line chart # – datetime module … Read more

Inventory Management System – Python MySQL Project for CBSE Class 12

Inventory Management System   # ============================================================ # INVENTORY MANAGEMENT SYSTEM # CBSE Class 12 Computer Science Investigatory Project # Retail / Shop Context # # Topics Covered: # – Python–MySQL Connectivity # – CRUD Operations (Create, Read, Update, Delete) # – Aggregate Functions (SUM, AVG, MAX, MIN, COUNT) # – Multi-table Queries & Joins # … Read more

School Management System Python Project with Source Code

School Management System Python Project   # ============================================================ # SCHOOL MANAGEMENT SYSTEM # CBSE Class 12 Computer Science Investigatory Project # Topics Covered: Python-MySQL Connectivity, File Handling, # Functions, Lists, Dictionaries, OOP Concepts # ============================================================ # # REQUIREMENTS: # pip install mysql-connector-python # # MYSQL SETUP (run these in MySQL before starting): # CREATE DATABASE … Read more

Student Report Card System | Class 12 CS Project

Student Report Card System – Class 12 CS Project in Python CBSE Class 12 Computer Science Investigatory Project Topics Covered: File Handling, CSV Module, Functions,  Lists, Dictionaries, String Formatting   # ============================================================ # STUDENT REPORT CARD SYSTEM # CBSE Class 12 Computer Science Investigatory Project # Topics Covered: File Handling, CSV Module, Functions, # Lists, … Read more

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

Interactive Periodic Table Lookup Tool in Python Project for Class 11

Periodic Table

Interactive Periodic Table Lookup Tool in Python Guide to Building a Periodic Table Lookup Tool in Python Hey there, Python beginners! Want to create a cool program that lets you look up details about chemical elements, like Hydrogen or Gold, just by typing their name, symbol, or atomic number? In this post, we’ll walk through … 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

Food Order System Python Project Class 12

Food Order System Python Project Here is a Python Project for managing a database related to a food ordering system. It uses the MySQL database system to store information about employees, customers, food items, and food orders. The code defines tables for Employee, Customer, Food and OrderFood. It allows you to add records to these … Read more