pythontkinter模組問題

時間 2021-06-28 17:19:12

1樓:老夭來了

不知到你的tkinter版本是啥?

import tkinter #首字母大寫def hello():

print(i)

top = tkinter.tk()

for i in range(0, 4):

tkinter.button(top, text=i, command=hello).grid(row=1, column=i)

top.mainloop()

我列印的是0,1,2,3.

如果解決了您的問題請採納!

如果未解決請繼續追問

2樓:匿名使用者

我準備是python 2.7

import tkinter as tk

import sys

def exit1():

sys.exit()

root = tk.tk()

root.title('世界')

root.geometry('400*200')btn = button(root, text = "click me to exit", command = exit1 )

btn.pack(expand = yes, fill = both)

root.mainloop()

LoRa模組,LoRa模組推薦?

作為國內第一批研發 lora 的公司和 5 年的經驗,給您提供如下 寶貴 的 lora 模組選型經驗 1 超低功耗,這樣電池才耐用。表現最好的是 銳米 rndu490las,低至 1.6ua,國內第一。2 射頻效能,這樣通訊距離遠。銳米 rndu490las 發射功率 18.83dbm,頻偏為 5....

消防模組8301怎麼接線,消防模組8301與繼電器如何連線

漁漁 1 gst ld 8301輸入輸出模組輸入端如果設定為 常開檢線 狀態輸入,模組輸入線末端 遠離模組端 必須並聯一個4.7k 的終端電阻 模組輸入端如果設定為 常閉檢線 狀態輸入模組輸入線末端 遠離模組端 必須串聯一個4.7k 的終端電阻。2 gst ld 8301輸入輸出模組為有源輸出時,g...

verilog中頂層模組例項引用多個模組時埠怎麼連線

假定sub module1和sub module2是已經定義好的兩個子模組,top是頂層。那麼子模組之間的連線可以之間用wire連線。頂層的輸入輸出也用wire連線進到子模組中。這是一般的,當然也有特殊的,比如雙向io等。module top in1,out1 input in1 output ou...