6 lines
155 B
Python
6 lines
155 B
Python
![]() |
import json
|
||
|
|
||
|
with open("example_game.json", "r") as f:
|
||
|
data = json.load(f)
|
||
|
|
||
|
print([x["player"]["summonerName"] for x in data["participantIdentities"]])
|