為什麼這篇python class呼叫鄉民發文收入到精華區:因為在python class呼叫這個討論話題中,有許多相關的文章在討論,這篇最有參考價值!作者j3234567 (鳥科學先生)看板Python標題[問題]class內呼叫function有沒...
小弟最近初學python有一個問題有點困惑
我用Tkinter寫了一個小視窗
from Tkinter import *
class radio_practice:
def __init__(self, master):
self.v = IntVar()
self.frame = Frame(master)
self.label = Label(master, text = 'choose a language',
justify = LEFT, font = ('times',26))
self.label.pack(fill = BOTH, side = TOP)
self.botton1 = Radiobutton(master, text = 'python',
variable = self.v, value = 1,
command = self.print_variable)
self.botton1.pack(fill = BOTH, side = LEFT, expand = True)
self.botton2 = Radiobutton(master, text = 'C#', v
ariable = self.v, value = 2,
command = self.print_variable)
self.botton2.pack(fill = BOTH, side = LEFT, expand = True)
def print_variable(self):
print self.v.get()
root = Tk()
program_choose = radio_practice(root)
root.mainloop()
後面那個print_variable function是為了觀察一下self.v會不會被我按下button後改變
的狀況,但是我的command如果 = self.print_variable()程式一跑self.v就會被印出來
而且任憑我怎麼點按鈕也不會顯示出被改過的self.v,但是如果沒有那個括號就可以如
預期看到self.v被改變
想請問在class裡面呼叫function有沒有括號的意義有何不同?
檔案請由此下載:
https://www.dropbox.com/s/mgml6286tfmi5g8/radiobutton.py?dl=0
--
食色性也 美食|生活|旅遊|攝影|醫學| 科技
#####http://j3234567.pixnet.net/blog#######
--
※ 發信站: 批踢踢實業坊(ptt.cc), 來自: 42.70.128.56
※ 文章網址: https://www.ptt.cc/bbs/Python/M.1425016847.A.131.html