1

super_functionウィンドウを閉じ、別のウィンドウに書き込まれたすべての情報を記録Entryし、リストに保存する関数(以下で呼び出しました)を作成したいと思います。

これが私の現在のコードです:

from Tkinter import *

def super_function():
    # super_function that should store Entry info
    # in a list and close the window

fen1 = Tk()
entr = []
for i in range(10):
    entr.append(Entry(fen1))
    entr[i].grid(row=i+1)

Button(fen1, text = 'store everything in a list', command = fen1.quit).grid()

fen1.mainloop()

ありがとうございました!

4

1 に答える 1