Practical File Class 12 IP 2022-23

Practical File Class 12 IP   Data Handling Program 1: Create a panda’s series from a dictionary of values and a ndarray ”’Python program to create a panda’s series from a dictionary of values and a ndarray”’ import pandas as pd import numpy as np s=pd.Series(np.array([2,4,5,7,9,8,9])) print(s) Output: 0 2 1 4 2 5 3 … Read more

Information Technology 802 Class 12 Sample Paper Term 2

Information Technology 802 Class 12 Sample Paper Term 2 Subject Code: 802 Session: 2021-2022 Term II Time Allowed: 90 min/ Max. Marks: 30 General Instructions: 1. Please read the instructions carefully 2. This Question Paper is divided into 03 sections, viz., Section A, Section B and Section C. 3. Section A is of 05 marks … Read more

Python MySQL Connectivity Notes Class 12

Python MySQL Connectivity Notes Class 12   Interface Python with MySQL database Contents: ♦  Connecting SQL with Python ♦  Creating database connectivity application ♦  Performing insert, delete, update, queries ♦  Display data by using fetchone(), fetchall(),fetchmany(), rowcount()   Database connectivity Database connectivity refers to connection and communication between an application and a database system. The … Read more

Book Store Management Python Project for Class 12

Book 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 mention in comment box provided below the article. Source Code: #https://cbsepython.in import mysql.connector mydb=mysql.connector.connect (host=”localhost”, user=”root”, password=”admin”) #CREATING DATABASE AND TABLE mycursor=mydb.cursor() mycursor.execute(“create … Read more

COVID-19 Data Visualization Python Project Class 12

COVID-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 wrong or unable to execute the program kindly mention in comment box provided below the article.     #cbsepython.in import pandas as pd … Read more

Hospital Management System Python Project Class 12

Hospital 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 – mysql connector : for database connectivity     ##hospital management software @cbsepython.in ##PRINTING WELCOME NOTE while(True): print(“”” ================================ WELCOME TO MYHOSPITAL ================================ “””) … Read more

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