質問編集履歴
1
書式の改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -2,12 +2,58 @@
|
|
2
2
|
|
3
3
|
|
4
4
|
|
5
|
+
このサイトを参考に
|
6
|
+
|
7
|
+
```ターミナル
|
8
|
+
|
9
|
+
python png2c.py JUSTICE.png
|
10
|
+
|
11
|
+
```
|
12
|
+
|
13
|
+
とターミナルに打った時に
|
14
|
+
|
15
|
+
```ターミナル
|
16
|
+
|
17
|
+
Traceback (most recent call last):
|
18
|
+
|
19
|
+
File "png2c.py", line 77, in <module>
|
20
|
+
|
21
|
+
main(sys.argv[1:])
|
22
|
+
|
23
|
+
File "png2c.py", line 43, in main
|
24
|
+
|
25
|
+
for i in range(0, (320*120) / 8):
|
26
|
+
|
5
|
-
|
27
|
+
TypeError: 'float' object cannot be interpreted as an integer
|
28
|
+
|
29
|
+
```
|
30
|
+
|
31
|
+
というエラーが出ました、
|
6
32
|
|
7
33
|
サイト内に
|
8
34
|
|
9
35
|
「png2c.py の中身1行が Python2 系の記載なので Python3 系で利用する場合、その点下記の修正が必要です。」
|
10
36
|
|
37
|
+
|
38
|
+
|
39
|
+
変更前
|
40
|
+
|
41
|
+
```png2c.py
|
42
|
+
|
43
|
+
for i in range(0, 320*120) / 8):
|
44
|
+
|
45
|
+
```
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
変更後
|
50
|
+
|
51
|
+
```png2c.py
|
52
|
+
|
53
|
+
for i in range(0, 4800):
|
54
|
+
|
55
|
+
```
|
56
|
+
|
11
|
-
と書かれていたのですが、修正の仕方がわかりません
|
57
|
+
と書かれていたのですが、修正の仕方がわかりません。
|
12
58
|
|
13
59
|
なので、どなたか修正の方法を教えていただければ幸いです。
|