मराठी

A table, named STATIONERY, in ITEMDB database, has the following structure: Field itemNo itemName price qty Type int(11) varchar(15) float int(11) - Computer Science (Python)

Advertisements
Advertisements

प्रश्न

A table, named STATIONERY, in ITEMDB database, has the following structure: 

Field Type
itemNo int(11)
itemName varchar(15)
price float
qty int(11)

Write the following Python function to perform the specified operation: AddAndDisplay(): To input details of an item and store it in the table STATIONERY. The function should then retrieve and display all records from the STATIONERY table where the Price is greater than 120. 

Assume the following for Python-Database connectivity:
Host: localhost, User: root, Password: Pencil

कोड लेखन

उत्तर

def AddAndDisplay(): 
    import mysql.connector as mycon
    mydb=mycon.connect(host="localhost",user="root",
    passwd="Pencil",database="ITEMDB")
    mycur=mydb.cursor()
    no=int(input("Enter Item Number: "))
    nm=input("Enter Item Name: ")
    pr=float(input("Enter price: "))
    qty=int(input("Enter qty: ")) 
    query="INSERT INTO stationery VALUES ({},'{}',{},{})"
    query=query.format(no,nm,pr,qty)
    mycur.execute(query)
    mydb.commit()
    mycur.execute("select * from stationery where price>120")
    for rec in mycur:
       print(rec)
shaalaa.com
  या प्रश्नात किंवा उत्तरात काही त्रुटी आहे का?
2024-2025 (March) Board Sample Paper
Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×