How we define "addProd" in python? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

How we define "addProd" in python?

Hey guys pls help me to find that error i am not able to solve that error. In my shop management project there have only 4 errors which is about the - 1."addProd" is not defined pylance 2."delProd"is not defined pylance 3."viewProd"is not defined pylance 4."newCust"is not defined pylance Pls help me to find this error @sololearn pls help me here !!😊

18th Dec 2022, 8:59 PM
Gajanan Awate
9 Answers
+ 5
Gajanan Awate , to get help we need to see your code attempt. please store your code in playground and link it here.
18th Dec 2022, 9:08 PM
Lothar
Lothar - avatar
+ 4
Emerson Prado , yes we should do so. is there any description available that i can use?
20th Dec 2022, 4:24 PM
Lothar
Lothar - avatar
+ 1
#Importing the required modules import resource import tkinter from tkinter import * from tkinter import ttk from tkinter import font from tkinter import messagebox import mysql.connector #Creating the main window wn = tkinter.Tk() wn.title("PythonGeeks Shop Management System") wn.configure(bg='honeydew2') wn.minsize(width=500,height=500) wn.geometry("700x600") headingFrame1 = Frame(wn,bg="snow3",bd=5) headingFrame1.place(relx=0.2,rely=0.1,relwidth=0.6,relheight=0.16) headingLabel = Label(headingFrame1, text="Welcome to PythonGeeks \n Shop Management System", fg='grey19', font=('Courier',15,'bold')) headingLabel.place(relx=0,rely=0, relwidth=1, relheight=1) #Button to add a new product btn1 = Button(wn,text="Add a Product",bg='LightBlue1', fg='black', width=20,height=2, command=addProd) btn1['font'] = font.Font( size=12) btn1.place(x=270,y=175) #Button to delete a product btn2 = Button(wn,text="Delete a Product",bg='misty rose', fg='black',width=20,height=2,command=delProd) btn2['font'] = font.Font( siz
18th Dec 2022, 9:16 PM
Gajanan Awate
+ 1
Gajanan Awate the code got truncated, and it's difficult to folllow anyway when just pasted in a comment. Pls do it this way: 1. Edit your question description 2. Tap "+" button, then "Code" 3. Select your code This way, you can be sure the code comes full and unmodified, and also that we can run, debug and test solutions.
20th Dec 2022, 12:41 AM
Emerson Prado
Emerson Prado - avatar
+ 1
Lothar , let's always give the linking instructions for linking the code?
20th Dec 2022, 12:43 AM
Emerson Prado
Emerson Prado - avatar
+ 1
Lothar I don't know. You can use mine if you like - I always use the same (my phone keyboard almost types it by itself...).
20th Dec 2022, 5:49 PM
Emerson Prado
Emerson Prado - avatar
0
Okk sure !!
18th Dec 2022, 9:12 PM
Gajanan Awate
0
Okkk
20th Dec 2022, 9:19 AM
Gajanan Awate
0
Okkk
20th Dec 2022, 9:19 AM
Gajanan Awate