1

while not all(pokedex):
for k, v in pokedex.iteritems():
if v:
feelings = get_satisfaction()
else:
pokemon = find_em()
try:
new = catch_em(pokemon)
except PokemonEscaped:
continue
else:
pokedex[k] = new
feelings = get_satisfaction()

Comments
Add Comment