質問編集履歴
2
インデントを変更しました
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -49,9 +49,11 @@
|
|
|
49
49
|
|
|
50
50
|
for child in frame.winfo_children():
|
|
51
51
|
child.grid_configure(padx=5, pady=5)
|
|
52
|
-
|
|
52
|
+
|
|
53
53
|
|
|
54
54
|
root.mainloop()
|
|
55
|
+
|
|
56
|
+
```
|
|
55
57
|
### 試したこと
|
|
56
58
|
|
|
57
59
|
from tkinter import *
|
1
インデントを変更しました。
title
CHANGED
|
File without changes
|
body
CHANGED
|
@@ -21,6 +21,7 @@
|
|
|
21
21
|
|
|
22
22
|
### 該当のソースコード
|
|
23
23
|
|
|
24
|
+
```python
|
|
24
25
|
from tkinter import *
|
|
25
26
|
from tkinter import ttk
|
|
26
27
|
|
|
@@ -48,6 +49,7 @@
|
|
|
48
49
|
|
|
49
50
|
for child in frame.winfo_children():
|
|
50
51
|
child.grid_configure(padx=5, pady=5)
|
|
52
|
+
```
|
|
51
53
|
|
|
52
54
|
root.mainloop()
|
|
53
55
|
### 試したこと
|