-
Notifications
You must be signed in to change notification settings - Fork 0
/
calculadora.py
109 lines (68 loc) · 2.81 KB
/
calculadora.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
from tkinter import *
raiz= Tk()
miFrame=Frame(raiz)
miFrame.pack()
operacion=""
resultado=0
#-------------------Pantalla-----------------------
numeroPantalla=StringVar()
pantalla= Entry(miFrame, textvariable=numeroPantalla)
pantalla.grid(row=1, column=1, padx=10, pady=10, columnspan=4)
pantalla.config(background="black", fg="#03f943", justify= "right")
#--------------pulsaciones teclado -----------------
def numeroPulsado(num):
global operacion
if operacion!="":
numeroPantalla.set(num)
operacion=""
else:
numeroPantalla.set(numeroPantalla.get() + num)
#------------------función suma --------------------
def suma(num):
global operacion
global resultado
resultado+=int(num)
operacion="suma"
numeroPantalla.set(resultado)
#----------------------funcion el_resultado-----------------
def el_resultado():
global resultado
numeroPantalla.set(resultado+int(numeroPantalla.get()))
resultado=0
#--------------------fila 1 -----------------------
boton7=Button(miFrame, text="7", width=3, command=lambda:numeroPulsado("7"))
boton7.grid(row=2, column=1)
boton8=Button(miFrame,text="8", width=3, command=lambda:numeroPulsado("8"))
boton8.grid(row=2, column=2)
boton9=Button(miFrame,text="9", width=3, command=lambda:numeroPulsado("9"))
boton9.grid(row=2, column=3)
botonDiv=Button(miFrame, text="/", width=3)
botonDiv.grid(row=2, column=4)
#--------------------fila 2 -----------------------
boton4=Button(miFrame, text="4", width=3, command=lambda:numeroPulsado("4"))
boton4.grid(row=3, column=1)
boton5=Button(miFrame,text="5", width=3, command=lambda:numeroPulsado("5"))
boton5.grid(row=3, column=2)
boton6=Button(miFrame,text="6", width=3, command=lambda:numeroPulsado("6"))
boton6.grid(row=3, column=3)
botonMult=Button(miFrame, text="X", width=3)
botonMult.grid(row=3, column=4)
#--------------------fila 3 -----------------------
boton1=Button(miFrame, text="1", width=3, command=lambda:numeroPulsado("1"))
boton1.grid(row=4, column=1)
boton2=Button(miFrame,text="2", width=3, command=lambda:numeroPulsado("2"))
boton2.grid(row=4, column=2)
boton3=Button(miFrame,text="3", width=3, command=lambda:numeroPulsado("3"))
boton3.grid(row=4, column=3)
botonRest=Button(miFrame, text="-", width=3)
botonRest.grid(row=4, column=4)
#--------------------fila 4 -----------------------
boton0=Button(miFrame, text="0", width=3, command=lambda:numeroPulsado("0"))
boton0.grid(row=5, column=1)
botonComa=Button(miFrame,text=",", width=3)
botonComa.grid(row=5, column=2)
botonIgual=Button(miFrame,text="=", width=3, command=lambda:el_resultado())
botonIgual.grid(row=5, column=3)
botonSuma=Button(miFrame, text="+", width=3, command=lambda:suma(numeroPantalla.get()))
botonSuma.grid(row=5, column=4)
raiz.mainloop()