Spaces:
Runtime error
Runtime error
Upload wahtever.py
Browse files- wahtever.py +2 -2
wahtever.py
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
-
with open('whatever stuff is neede/all pokemons.txt', 'r') as a: all_pokemons = a.read().split(',')
|
2 |
-
with open('whatever stuff is neede/evolvable pokemons.txt', 'r') as a: evolvable_pokemons = a.read().split(',')
|
3 |
|
4 |
import csv
|
5 |
with open('whatever stuff is neede/all.csv', 'r', encoding='latin-1') as stone: stone = {i[0].lower():i[2] for i in list(csv.reader(stone, delimiter=","))}
|
|
|
1 |
+
with open('whatever stuff is neede/all pokemons.txt', 'r',encoding='latin-1') as a: all_pokemons = a.read().split(',')
|
2 |
+
with open('whatever stuff is neede/evolvable pokemons.txt', 'r',encoding='latin-1') as a: evolvable_pokemons = a.read().split(',')
|
3 |
|
4 |
import csv
|
5 |
with open('whatever stuff is neede/all.csv', 'r', encoding='latin-1') as stone: stone = {i[0].lower():i[2] for i in list(csv.reader(stone, delimiter=","))}
|