import random
import time
print("Picking. . . ")
heroes = ["Amazon", "Assassin", "Necromancer", "Barbarian", "Paladin", "Sorceress", "Druid"]
time.sleep(1)
print("\nRemoving Some. . . ")
time.sleep(1)
a = random.choice(heroes)
heroes.remove(a)
print("\n")
print("Removed: ", a)
time.sleep(.2)
b = random.choice(heroes)
heroes.remove(b)
print("\n")
print("Removed: ", b)
time.sleep(.2)
c = random.choice(heroes)
heroes.remove(c)
print("\n")
print("Removed: ", c)
time.sleep(.2)
print("-----------------")
time.sleep(.2)
d = random.choice(heroes)
print("\nUltimate Choice: ", d)