前提・実現したいこと
tkinterの学習をしているのですが、buttonを広げるために使うオプションのfillでエラーが出ます。
発生している問題・エラーメッセージ
PS C:\Users\user> & python c:/Users/user/OneDrive/デスクトップ/python/tkTest.py
Traceback (most recent call last):
File "c:/Users/user/OneDrive/デスクトップ/python/tkTest.py", line 16, in <module>
button = tkinter.Button(root, fill = 'both', text='Button {0}'.format(i), command = make_cmd(i))
File "C:\Users\user\AppData\Local\Programs\Python\Python38-32\lib\tkinter_init_.py", line 2645, in init
Widget.init(self, master, 'button', cnf, kw)
File "C:\Users\user\AppData\Local\Programs\Python\Python38-32\lib\tkinter_init_.py", line 2567, in init
self.tk.call(
_tkinter.TclError: unknown option "-fill"
該当のソースコード
python
1import tkinter 2 3root = tkinter.Tk() 4 5var = tkinter.StringVar() 6var.set('') 7 8label = tkinter.Label(root, textvariable=var) 9label.pack() 10 11def make_cmd(n): 12 return lambda: var.set('Button {0} pressed'.format(n)) 13 14 15for i in range(4): 16 button = tkinter.Button(root, fill = 'both', text='Button {0}'.format(i), command = make_cmd(i)) 17 button.pack() 18 19root.mainloop() 20 21### 試したこと 22 23オプションの位置が関係しているのかと考え、試してみましたが当然関係ありませんでした。ネットで情報を調べても、タイポの情報しかでてこなかったため、質問させてください。 24 25### 補足情報(FW/ツールのバージョンなど) 26 27vs code を使用しています。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。