6

class Rant(Speech):
def __init__(self, topic, audience):
self.topic = topic
self.audience = [x for x in audience if x.mood = moods[bored]]

devRant = Rant("wtf?", devs)

Comments
Add Comment