Skip to content

Instantly share code, notes, and snippets.

View DevloperHS's full-sized avatar

Purnendu Shukla(Harsh) DevloperHS

View GitHub Profile
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
@DevloperHS
DevloperHS / answers.py
Last active November 15, 2021 07:47
Pokémon Optimize
# printing out results - > Best 6 pokemons
for i in range(206):
if Pokemon[i].value() == 1:
print(names[i])