質問編集履歴
1
プログラムはこれですべてでした。大量に出ているエラーメッセージの1回分をすべて掲載します。恐れ入ります。
test
CHANGED
File without changes
|
test
CHANGED
@@ -18,7 +18,31 @@
|
|
18
18
|
|
19
19
|
エラーメッセージ
|
20
20
|
|
21
|
+
Exception in Tkinter callback
|
22
|
+
|
23
|
+
Traceback (most recent call last):
|
24
|
+
|
25
|
+
File "C:\Users\AppData\Local\Programs\Python\Python37\lib\tkinter\__init__.py", line 1705, in __call__
|
26
|
+
|
27
|
+
return self.func(*args)
|
28
|
+
|
29
|
+
File "C:\Users\AppData\Local\Programs\Python\Python37\lib\tkinter\__init__.py", line 749, in callit
|
30
|
+
|
31
|
+
func(*args)
|
32
|
+
|
33
|
+
File "C:/Users/Dropbox/プログラミング/新しいフォルダー/ライフゲームもどき.py", line 28, in animate
|
34
|
+
|
35
|
+
outline="black", width=2)
|
36
|
+
|
37
|
+
File "C:\Users\Hiroki Aki\AppData\Local\Programs\Python\Python37\lib\tkinter\__init__.py", line 2501, in create_rectangle
|
38
|
+
|
39
|
+
return self._create('rectangle', args, kw)
|
40
|
+
|
41
|
+
File "C:\Users\Hiroki Aki\AppData\Local\Programs\Python\Python37\lib\tkinter\__init__.py", line 2480, in _create
|
42
|
+
|
43
|
+
*(args + self._options(cnf, kw))))
|
44
|
+
|
21
|
-
tkinter.TclError: invalid command name ".!canvas"
|
45
|
+
_tkinter.TclError: invalid command name ".!canvas"
|
22
46
|
|
23
47
|
|
24
48
|
|
@@ -30,9 +54,7 @@
|
|
30
54
|
|
31
55
|
ソースコード
|
32
56
|
|
33
|
-
```
|
34
|
-
|
35
|
-
import numpy as np
|
57
|
+
``import numpy as np
|
36
58
|
|
37
59
|
from tkinter import*
|
38
60
|
|
@@ -90,6 +112,8 @@
|
|
90
112
|
|
91
113
|
win.after(200, animate)
|
92
114
|
|
115
|
+
|
116
|
+
|
93
117
|
|
94
118
|
|
95
119
|
for z in range(max_step):
|
@@ -172,6 +196,10 @@
|
|
172
196
|
|
173
197
|
win.mainloop()
|
174
198
|
|
199
|
+
`
|
200
|
+
|
201
|
+
|
202
|
+
|
175
203
|
|
176
204
|
|
177
205
|
### 試したこと
|