2017年10月4日 星期三

Hello, Again




hi there, everyone!
>>> 

If you click the right button, the text “hi there, everyone!” is printed to the console. 

If you click the left button, the program stops.
#===============================================
#In Python 2, it is called Tkinter, while in Python 3
#    Tkinter module:
#      import Tkinter
#                      Or, more often:
#    from Tkinter import *
#    import Tkinter as Tk """
#===============================================
from tkinter import *

class App:

    def __init__(self, master):

        frame = Frame(master)
        frame.pack()

        self.button = Button(
            frame, text="QUIT", fg="red", command=frame.quit
            )
        self.button.pack(side=LEFT)

        self.hi_there = Button(frame, text="Hello", command=self.say_hi)
        self.hi_there.pack(side=LEFT)

    def say_hi(self):
        print ("hi there, everyone!")

root = Tk()

app = App(root)

root.mainloop()

root.destroy() # optional; see description below

沒有留言:

張貼留言

113 學年度第 1 學期 RFID應用課程 Arduino程式

113 學年度第 1 學期 RFID應用課程 Arduino程式 https://www.mediafire.com/file/zr0h0p3iosq12jw/MFRC522+(2).7z/file 內含修改過後的 MFRC522 程式庫 (原程式有錯誤) //定義MFRC522...