This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import csv | |
| import json | |
| import logging | |
| import multiprocessing | |
| import os | |
| import tarfile | |
| from multiprocessing.pool import ThreadPool | |
| from pathlib import Path | |
| from typing import List |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # printing out results - > Best 6 pokemons | |
| for i in range(206): | |
| if Pokemon[i].value() == 1: | |
| print(names[i]) |
NewerOlder