回答編集履歴
1
脱字
answer
CHANGED
@@ -8,5 +8,5 @@
|
|
8
8
|
```
|
9
9
|
また、frameをdestroyするだけならばLambda式が簡易的でしょう。
|
10
10
|
```python
|
11
|
-
frame.bind_all("<Button>",lambda event: frame.destroy)
|
11
|
+
frame.bind_all("<Button>",lambda event: frame.destroy())
|
12
12
|
```
|