-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSmartCalculator.py
87 lines (71 loc) · 2.14 KB
/
SmartCalculator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
from tkinter import *
def add(a,b):
return a + b
def sub(a,b):
return a - b
def mul(a,b):
return a * b
def div(a,b):
return a / b
def mod(a,b):
return a % b
def lcm(a,b):
L = a if a>b else b
while L <= a*b:
if L%a == 0 and L%b == 0:
return L
L+=1
def hcf(a,b):
H = a if a<b else b
while H >= 1:
if a%H == 0 and b%H == 0:
return H
H-=1
def extraxt_from_text(text):
l = []
for t in text.split(' '):
try:
l.append(float(t))
except ValueError:
pass
return l
def calculate():
text = textin.get()
for word in text.split(' '):
if word.upper() in operations.keys():
try:
l = extraxt_from_text(text)
r = operations[word.upper()](l[0] , l[1])
list.delete(0,END)
list.insert(END,r)
except:
list.delete(0,END)
list.insert(END,'something went wrong please enter again')
finally:
break
elif word.upper() not in operations.keys():
list.delete(0,END)
list.insert(END,'something went wrong please enter again')
operations = {'ADD':add , 'ADDITION':add , 'SUM':add , 'PLUS':add ,
'SUB':sub , 'DIFFERENCE':sub , 'MINUS':sub , 'SUBTRACT':sub,
'LCM':lcm , 'HCF':hcf , 'PRODUCT':mul , 'MULTIPLICATION':mul,
'MULTIPLY':mul , 'DIVISION':div , 'DIV':div ,'DIVIDE':div, 'MOD':mod ,
'REMANDER':mod , 'MODULUS':mod}
win = Tk()
win.geometry('500x300')
win.title('Smart Pugger')
win.configure(bg='lightskyblue')
l1 = Label(win , text='I am a smart calculator',width=20 , padx=3)
l1.place(x=150,y=10)
l2 = Label(win , text='My name is Pugger' , padx=3)
l2.place(x=180,y=40)
l3 = Label(win , text='What can i help you' , padx=3)
l3.place(x=176,y=130)
textin = StringVar()
e1 = Entry(win , width=30 , textvariable = textin)
e1.place(x=100,y=160)
b1 = Button(win , text='Just this' ,command=calculate)
b1.place(x=210,y=200)
list = Listbox(win,width=20,height=3)
list.place(x=150,y=230)
win.mainloop()