Esempio n. 1
0
 def calc1(self, a=1, b=1, c=1, d=1):
     a = float(self.entry.get())
     b = float(self.entry2.get())
     c = float(self.entry3.get())
     d = float(self.entry4.get())
     final = LIC.convert(a,c,b,d)
     self.result.delete(0,END)
     self.result.insert(END,final)
Esempio n. 2
0
 def calc1(self, a=1, b=1, c=1, d=1):
     a = float(self.entry.get())
     b = float(self.entry2.get())
     c = float(self.entry3.get())
     d = float(self.entry4.get())
     final = LIC.convert(a, c, b, d)
     self.result.delete(0, END)
     self.result.insert(END, final)
Esempio n. 3
0
 def calc2(self, a=1, b=1, c=1, d=1, e=1, f=1, g=1, h=1):
     a = float(self.entry.get())
     b = float(self.entry2.get())
     c = float(self.entry3.get())
     d = float(self.entry4.get())
     e = float(self.entry5.get())
     f = float(self.entry6.get())
     g = float(self.entry7.get())
     h = float(self.entry8.get())
     final = LIC.calcslope(a,b,c,d,e,f,g,h)
     self.result.delete(0,END)
     self.result.insert(END,final)
Esempio n. 4
0
 def calc2(self, a=1, b=1, c=1, d=1, e=1, f=1, g=1, h=1):
     a = float(self.entry.get())
     b = float(self.entry2.get())
     c = float(self.entry3.get())
     d = float(self.entry4.get())
     e = float(self.entry5.get())
     f = float(self.entry6.get())
     g = float(self.entry7.get())
     h = float(self.entry8.get())
     final = LIC.calcslope(a, b, c, d, e, f, g, h)
     self.result.delete(0, END)
     self.result.insert(END, final)