1

私は現在、著者が修正しておらず、コードにコメントを残したPythonブック「Pythonの次のステップ」のバグを修正しようとしています:「後で修正」

最初の解決策は失敗しましたが、2 番目の解決策はループを削除することで成功しました。問題は、最初の解決策が失敗する理由がわからないことです!

解決策 1:

ユーザーがループ、Button オブジェクト、および click という関数を使用して Tkinter で作成された電卓のボタンをクリックすると、電卓はラムダ引数から大文字の C を出力するだけです。について話しています。

解決策 2:

ボタンを生成するループを削除し、各ボタンを繰り返しハンド コードします。

コード:

# myCalculator3_final.py

from Tkinter import *
from decimal import *

# key press function:
def click(key):
        display.insert(END, key)


##### main:
window = Tk()
window.title("MyCalculator")

# create top_row frame
top_row = Frame(window)
top_row.grid(row=0, column=0, columnspan=2, sticky=N)

# use Entry widget for an editable display
display = Entry(top_row, width=45, bg="light green")
display.grid()

# create num_pad_frame
num_pad = Frame(window)
num_pad.grid(row=1, column=0, sticky=W)

# This method of passing an argument to click work! Loop removed and buttons hand code
#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
#-------------------------------------------------------------------------
# create num_pad buttons passing an argument to the command function click
#-------------------------------------------------------------------------   
seven = Button(num_pad, text="7", width=5, command=lambda :click("7"))
seven.grid(row=0,column=0)
eight = Button(num_pad, text="8", width=5, command=lambda :click("8"))
eight.grid(row=0,column=1)
nine= Button(num_pad, text="9", width=5, command=lambda :click("9"))
nine.grid(row=0,column=2)
four= Button(num_pad, text="4", width=5, command=lambda :click("4"))
four.grid(row=1,column=0)
five= Button(num_pad, text="5", width=5, command=lambda :click("5"))
five.grid(row=1,column=1)
six= Button(num_pad, text="6", width=5, command=lambda :click("6"))
six.grid(row=1,column=2)
one= Button(num_pad, text="1", width=5, command=lambda :click("1"))
one.grid(row=2,column=0)
two= Button(num_pad, text="2", width=5, command=lambda :click("2"))
two.grid(row=2,column=1)
three= Button(num_pad, text="3", width=5, command=lambda :click("3"))
three.grid(row=2,column=2)
zero= Button(num_pad, text="0", width=5, command=lambda :click("0"))
zero.grid(row=2,column=0)
#---------------------------------------------------------------------------   



# calculate the row, column for button

# create operator_frame
operator = Frame(window)
operator.grid(row=1, column=1, sticky=E)

operator_list = [
'*', '/',  
'+', '-',
'(', ')',
'C' ]

# The authors code and I have added  the same lambda function as above but 
#it just prints out capital C
#>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
r = 0
c = 0
for btn_text in operator_list:
    Button(operator, text=btn_text, width=5, command=lambda: click(btn_text)).grid(row=r,column=c)
    c = c+1
    if c > 1:
        c = 0
        r = r+1


##### Run mainloop
window.mainloop()

質問:

クリックして引数を渡すラムダ呼び出しメソッドがループ内で機能せず、C のみが表示されるのはなぜですか。ループを削除すると機能します。

4

1 に答える 1

2

この行で:

Button(operator, text=btn_text, width=5, command=lambda: click(btn_text)).grid(row=r,column=c)

ラムダ内の値はbtn_text、現在の値で凍結されません。代わりにbtn_text、ループの次の繰り返しで変更されると、ラムダで評価される値も変更されます。これは、が の最終値であるため、すべてのボタンに実質的にclick('C')コマンドがあることを意味します。'C'btn_text

できるよ:

command=lambda text=btn_text: click(text)

または

command=(lambda text: lambda: click(text))(btn_text)

textの現在の値を取得し、btn_text後で変更しません。コマンドは適切な引数で呼び出されます。

于 2013-08-29T12:13:01.543 に答える