forked from Anuragcoderealy/Codenewhacktober
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Calculator.py
49 lines (39 loc) · 1.74 KB
/
Calculator.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
from kivy.app import App
from kivy.uix.button import Button
from kivy.uix.boxlayout import BoxLayout
from kivy.uix.gridlayout import GridLayout # to make everything in a grid like
#make all symbols in center ,proper space between row and column
from kivy.uix.label import Label
class Calculator(App):
def build(self):
root_widget = BoxLayout(orientation="vertical")
output_label = Label(size_hint_y=0.75, font_size=50)
button_symbols = ('1','2','3','+',
'4','5','6','-',
'7','8','9','.',
'0','*','/','=')
button_grid = GridLayout(cols=4, size_hint_y=2)
for symbol in button_symbols:
button_grid.add_widget(Button(text=symbol))
clear_button = Button(text="CLEAR", size_hint_y=None ,height=100)
def print_button_text(instance):
output_label.text += instance.text
for button in button_grid.children[1:]:
button.bind(on_press=print_button_text)
def resize_label_text(label, new_height):
label.fontsize = 0.5*label.height
output_label.bind(height=resize_label_text)
def evaluate_result(instance):
try:
output_label.text = str(eval(output_label.text))
except SyntaxError:
output_label.text = "Python Syntax Error!"
button_grid.children[0].bind(on_press=evaluate_result)
def clear_label(instance):
output_label.text=" "
clear_button.bind(on_press=clear_label)
root_widget.add_widget(output_label)
root_widget.add_widget(button_grid)
root_widget.add_widget(clear_button)
return root_widget
Calculator().run()