Library Management System Python Project for Class 12
Library 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',…
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(),…
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…
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…
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 …
ATM Management Python Project for Class 12
ATM 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', 'vivek'] pins = ['1111', '2222',…
Random Function in Python MCQ Class 11-12
Random Function in Python MCQ Class 11-12 1. What does the following statement do? import random a) Imports the random module b) Imports a random module from a list of modules c) Imports the random function d) imports the directory named random…
Informatics Practices Sample Paper Term 2 Class 12
Informatics Practices Sample Paper Term 2 Class 12 Sample Question Paper INFORMATICS PRACTICES (Code : 065) Maximum Marks: 35 Time: 2 hours General Instructions The question paper is divided into 3 sections – A, B and C Section A, consists of…
Solved Computer Science Sample Paper Term 2 Class 12
Computer Science Sample Paper Term 2 Class 12 Sample Question Paper COMPUTER SCIENCE (Code: 083) Maximum Marks: 35 /Time: 2 hours General Instructions * The question paper is divided into 3 sections – A, B and C * Section A, consists of 7…
Create a CSV file by entering user-id and password, read and search the password for given userid
Create a CSV file by entering user-id and password, read and search the password for given userid # Python Program import csv with open("user_info.csv", "w") as obj: fileobj = csv.writer(obj) fileobj.writerow(["User Id", "password"]) while(True):…