dpe1 commited on
Commit
c4827e2
·
1 Parent(s): 9e4ff58

Upload wahtever.py

Browse files
Files changed (1) hide show
  1. 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=","))}