只接受一个参数(给定0)

2024-06-07 10:56:19 发布

您现在位置:Python中文网/ 问答频道 /正文

class bmicalculator():
     #class created for the bmi calculator GUI and processing the numbers (pain in the ass to make)#
     def __init__(self,master):

          self.heightcm=DoubleVar()
          self.weightkg=DoubleVar()

          self.master=master
          self.master.geometry('250x200+100+200')
          self.master.title('BMI Calculator')

          self.label2=Label(self.master,text='Welcome to the BMI Calculator',fg='red').grid(row=0,column=0)
          self.label2=Label(self.master,text='Please enter your height in centimetres',fg='black').grid(row=3,column=0)
          self.label2=Label(self.master,text='Please enter your weight in kilograms',fg='black').grid(row=4,column=0)

          self.myheight=Entry(self.master,textvariable=self.heightcm).grid(row=3,column=1)
          self.myweight=Entry(self.master,textvariable=self.weightkg).grid(row=4,column=1)
          self.button4=Button(self.master,text="Calculate BMI",fg='red',command=self.bmicalculation).grid(row=7,column=0)
          self.button5=Button(self.master,text="Exit",fg='red',command=self.exit).grid(row=9,column=0)

     def bmicalculation(self):
          bmiheight=self.heightcm.get()
          print bmiheight
          bmiweight=self.weightkg.get()
          bmi= float((bmiweight)/((bmiheight / 100)**2))
          self.bmi = bmi
          print bmi
          self.label1=Label(self.master,text='Your BMI is %.2f' % bmi).grid(row=5,column=0)

          if bmi <= 18.5:
               self.label2=Label(self.master,text='This places you in the underweight group.',fg='blue').grid(row=6,column=0)
               totalindex = 'underweight'
               self.totalindex = totalindex
          elif bmi >18.5 and bmi <25:
               self.label3=Label(self.master,text='This places you in the healthy weight group.',fg='green').grid(row=6,column=0)
               totalindex = 'healthy'
               self.totalindex = totalindex
          elif bmi >= 25 and bmi < 30:
               self.label4=Label(self.master,text='This places you in the overweight group.',fg='orange').grid(row=6,column=0)
               totalindex = 'overweight'
               self.totalindex = totalindex
          elif bmi >=30:
               self.label5=Label(self.master,text='This places you in the obese group.',fg='red').grid(row=6,column=0)
               totalindex = 'obese'
               self.totalindex = totalindex

          if bmi >0 and bmi <999999999999999999999:
               self.button6=Button(self.master,text="Store Data",fg='red',command=self.dynamic_data_entry).grid(row=8,column=0)

     def dynamic_data_entry(self):
        #this is what adds the data to the database. Bmi has to be changed to the value of bmi and weightclass has to be change to the weightclass
          timestamp = str(datetime.datetime.now().date())
          bodymassindex = self.bmi
          weightclass = self.totalindex
          c.execute("INSERT INTO BMIStorage (timestamp, bodymassindex, weightclass) VALUES (?, ?, ?)",(timestamp, bodymassindex, weightclass))
          conn.commit()
          create_table()

     def create_table():
          c.execute('CREATE TABLE IF NOT EXISTS BMIStorage(timestamp TEXT,bmi REAL,weightclass TEXT)')

获取dynamic_data_entry只需要一个参数(给定0)的错误。我不知道怎么修理,也不知道出了什么问题。这是一个带有GUI的BMI的代码,我想把用户的输入连同日期一起写入数据库。我无法将输入的数据写入数据库。在

**函数是类的方法 ***更新以添加整个类


Tags: andthetotextinselfmastercolumn
1条回答
网友
1楼 · 发布于 2024-06-07 10:56:19

我想我已经找到你的错误了。在

将作为命令的函数传递给您的Button类,方法如下:

self.button6=Button(...., command=self.dynamic_data_entry).grid(row=8,column=0)

但是,如果方法本身需要一个隐式参数,即self,则直接传递该方法,这将导致得到Error。在

这个self表示类的对象。但是当您直接传递方法时,就不涉及对象了。在

因此,您应该这样做:

^{pr2}$

这样,就告诉Button类从对象调用方法,在本例中,self参数将存在,因为实例化的对象存在。在

确保您理解command=self.dynamic_data_entry和{}之间的区别

相关问题 更多 >

    热门问题