I have a list of 100+ objects, and I'd like to select 5 random objects and store them into variables, but I am not sure how to do that. What to do? This is a simplified version of my code:
class playableCharacters:
def __init__(self, name, power)
self.name = name
self.power = power
Aatrox = playableCharacters("Aatrox", 9)
Ahri = playableCharacters("Ahri", 3)