質問編集履歴
1
エラー全文を加筆しました。
title
CHANGED
|
@@ -1,1 +1,1 @@
|
|
|
1
|
-
TypeError: string indices must be integers
|
|
1
|
+
TypeError: string indices must be integers pythonのエラー
|
body
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
どなたかご教授ください。
|
|
3
3
|
因みに、これはクラッシュロワイヤルというゲームのAPIを使っています。(https://developer.clashroyale.com/#/)
|
|
4
4
|
|
|
5
|
+
エラーコードは以下になります。
|
|
6
|
+
Traceback (most recent call last):
|
|
7
|
+
File "C:\Users\mto\Desktop\python_lesson\CRL\crl_api.py", line 53, in <module>
|
|
8
|
+
print(battle_info()[0]["type"])
|
|
9
|
+
TypeError: string indices must be integers
|
|
10
|
+
|
|
11
|
+
|
|
5
12
|
```Python3.72
|
|
6
13
|
import json
|
|
7
14
|
import requests
|