import sqlite3 def DataBase(): con = sqlite3.connect('data1.db') cur = con.cursor() cur.execute("CREATE TABLE IF NOT EXISTS data1(id INTEGER PRIMARY KEY AUTOINCREMENT ,Bookname TEXT,Author TEXT,Year TEXT,Isbm TEXT)") con.commit() con.close() def Add(Bookname,Author,Year,Isbm): con = sqlite3.connect('data1.db') cur = con.cursor()…
PRATHAMESH SURYAVANSHI
updated on 26 Jun 2021
Project Details
Leave a comment
Thanks for choosing to leave a comment. Please keep in mind that all the comments are moderated as per our comment policy, and your email will not be published for privacy reasons. Please leave a personal & meaningful conversation.
Other comments...
Read more Projects by PRATHAMESH SURYAVANSHI (3)
Project 1 English Dictionary App
def display_msg(): print('Main Menu') print('1. Add a Word') print('2. Find The Meaning') print('3. Update a Word') print('4. Exit') import jsonf = open('words.txt','w')temp = {'down':'towards','age': 'the length of that…
05 Jan 2022 11:36 AM IST
Project 1
Project is Below
05 Jan 2022 11:21 AM IST
Project 2 Library Book Management System
import sqlite3 def DataBase(): con = sqlite3.connect('data1.db') cur = con.cursor() cur.execute("CREATE TABLE IF NOT EXISTS data1(id INTEGER PRIMARY KEY AUTOINCREMENT ,Bookname TEXT,Author TEXT,Year TEXT,Isbm TEXT)") con.commit() con.close() def Add(Bookname,Author,Year,Isbm): con = sqlite3.connect('data1.db') cur = con.cursor()…
26 Jun 2021 07:34 PM IST