Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- # -*- coding: utf-8 -*-
- #
- # Script que implementa una calculadora gráfica
- import tkinter as tk
- from math import sqrt, factorial, pi
- ###### funciones #######################
- def clic(tecla):
- global cuenta
- cuenta = cuenta + tecla
- calculo.set(cuenta)
- def limpieza():
- global cuenta
- cuenta = ""
- calculo.set("0")
- def hacer_cuenta():
- global cuenta
- try:
- total = eval(cuenta)
- except Exception:
- limpieza()
- total = "ERROR"
- calculo.set(total)
- def borrar_caracter():
- global cuenta
- lista = []
- for c in cuenta:
- lista.append(c)
- del lista[-1]
- cuenta = "".join(lista)
- calculo.set(cuenta)
- ###### ventana #######################
- ventana = tk.Tk()
- ventana.title("Calculadora ACME")
- ventana.config(width=390, height=600, bg="light steel blue")
- ventana.resizable(0,0)
- # creo una variable del lado consola para realizar el cálculo
- cuenta = ""
- # creo una variable del lado gráfico para mostrar el cálculo en la pantalla
- calculo = tk.StringVar()
- limpieza()
- # creamos una pantalla
- pantalla = tk.Entry(
- font = ('arial',20,'bold'),
- width = 20,
- bd = 25,
- bg = "powder blue",
- justify = "right",
- state = tk.DISABLED,
- textvariable = calculo,
- )
- pantalla.place(x=20,y=50)
- # defino las dimensiones de las teclas
- ancho = 10
- alto = 2
- ##### teclas ###############
- # tecla para borrar un caracter
- tecla = tk.Button(text="DEL", width=ancho, height=alto, bg="medium aquamarine", command=borrar_caracter)
- tecla.place(x=287, y=140)
- #### primera fila : 1 2 3 +
- tecla = tk.Button(text="1", width=ancho, height=alto, command=lambda:clic("1"))
- tecla.place(x=17, y=200)
- tecla = tk.Button(text="2", width=ancho, height=alto, command=lambda:clic("2"))
- tecla.place(x=107, y=200)
- tecla = tk.Button(text="3", width=ancho, height=alto, command=lambda:clic("3"))
- tecla.place(x=197, y=200)
- tecla = tk.Button(text="+", width=ancho, height=alto, bg="SteelBlue2", command=lambda:clic("+"))
- tecla.place(x=287, y=200)
- #### segunda fila : 4 5 6 -
- tecla = tk.Button(text="4", width=ancho, height=alto, command=lambda:clic("4"))
- tecla.place(x=17, y=260)
- tecla = tk.Button(text="5", width=ancho, height=alto, command=lambda:clic("5"))
- tecla.place(x=107, y=260)
- tecla = tk.Button(text="6", width=ancho, height=alto, command=lambda:clic("6"))
- tecla.place(x=197, y=260)
- tecla = tk.Button(text="-", width=ancho, height=alto, bg="SteelBlue2", command=lambda:clic("-"))
- tecla.place(x=287, y=260)
- #### tercera fila : 7 8 9 x
- tecla = tk.Button(text="7", width=ancho, height=alto, command=lambda:clic("7"))
- tecla.place(x=17, y=320)
- tecla = tk.Button(text="8", width=ancho, height=alto, command=lambda:clic("8"))
- tecla.place(x=107, y=320)
- tecla = tk.Button(text="9", width=ancho, height=alto, command=lambda:clic("9"))
- tecla.place(x=197, y=320)
- tecla = tk.Button(text="x", width=ancho, height=alto, bg="SteelBlue2", command=lambda:clic("*"))
- tecla.place(x=287, y=320)
- #### cuarta fila : ( 0 ) /
- tecla = tk.Button(text="(", width=ancho, height=alto, bg="sky blue", command=lambda:clic("("))
- tecla.place(x=17, y=380)
- tecla = tk.Button(text="0", width=ancho, height=alto, command=lambda:clic("0"))
- tecla.place(x=107, y=380)
- tecla = tk.Button(text=")", width=ancho, height=alto, bg="sky blue", command=lambda:clic(")"))
- tecla.place(x=197, y=380)
- tecla = tk.Button(text="/", width=ancho, height=alto, bg="SteelBlue2", command=lambda:clic("/"))
- tecla.place(x=287, y=380)
- #### quinta fila : raiz, coma decimal potencia resto
- tecla = tk.Button(text="\u221a", width=ancho, height=alto, bg="SteelBlue2", command=lambda:clic("sqrt("))
- tecla.place(x=17, y=440)
- tecla = tk.Button(text=".", width=ancho, height=alto, command=lambda:clic("."))
- tecla.place(x=107, y=440)
- tecla = tk.Button(text="POT", width=ancho, height=alto, bg="SteelBlue2", command=lambda:clic("**"))
- tecla.place(x=197, y=440)
- tecla = tk.Button(text="%", width=ancho, height=alto, bg="SteelBlue2", command=lambda:clic("%"))
- tecla.place(x=287, y=440)
- #### sexta fila : Clear, factorial PI =
- tecla = tk.Button(text="CL", width=ancho, height=alto, bg="sky blue", command=limpieza)
- tecla.place(x=17, y=500)
- tecla = tk.Button(text="!", width=ancho, height=alto, bg="sky blue", command=lambda:clic("factorial("))
- tecla.place(x=107, y=500)
- tecla = tk.Button(text="\u03c0", width=ancho, height=alto, bg="sky blue", command=lambda:clic(str(pi)))
- tecla.place(x=197, y=500)
- tecla = tk.Button(text="=", width=ancho, height=alto, bg="SteelBlue2", command=hacer_cuenta)
- tecla.place(x=287, y=500)
- ventana.mainloop()
Advertisement
Add Comment
Please, Sign In to add comment