• 简易计算器


    1.代码展示

    from tkinter import Tk, Label, RAISED, Button, Entry
    from tkinter.messagebox import showinfo

    root = Tk()

    def cal():
        a = dataEnt.get()
        try:
            b = eval(a)
            showinfo(message= '结果为 {}'.format(b))
        except:
            showinfo(message= '这都能输错,你的数学是体育老师教的吗!')

    a = Label(master=root, font = ('仿宋', 18 , 'bold '),
    text = '简易计算器', foreground = 'black' , width=20 ,height = 2)
    a.grid(row = 0,column = 1)

    b = Label(master=root, font = ('仿宋', 14 , 'bold '),
    text = '请输入算式:', foreground = 'red' , width=20 ,height = 2)
    b.grid(row = 1,column = 0)

    c = Label(master=root, font = ('仿宋', 14 , 'bold '),
    text = """(注意:运算符
    应为+,-,*,/)""", foreground = 'blue' , width=18 ,height = 2)
    c.grid(row = 1,column = 2)

    dataEnt = Entry(root, width=40)
    dataEnt.grid(row = 1,column = 1)

    buttom = Button(root, width=15, height=2, text = 'ENTER', command=cal)
    buttom.grid(row = 2,column = 1)

    root.mainloop()
     
    2.代码实现

     

  • 相关阅读:
    Windows内核对象
    FreeWriting_1
    FreeWriting_2
    【整理】技术文章集锦
    【转】英语吵架一百句
    像 IDE 一样使用 vim
    统治世界的十大算法
    AnimationSet动画集合类的使用
    帮你解答adb是什么,adb有什么用
    SharedPreferences的简单使用
  • 原文地址:https://www.cnblogs.com/wxMing/p/14100286.html
Copyright © 2020-2023  润新知