import exit_survey as pages from . import * c = cu class PlayerBot(Bot): def play_round(self): import random yield Demographics, dict( age=random.choices(population=["younger than 18","18-25","26-30","31-35","36-40", "older than 40", "prefer not to say"], weights=(1,40,40,10,3,2,4), k=1)[0], gender=random.choices(population=["Male","Female","Non-Binary","prefer not to say"], weights=(47,47,3,3), k=1)[0], education=random.choices(population=["High School","Apprenticeship","Bachelor's degree", "Master's degree", "PhD", "Other", "prefer not to say"], weights=(1,1,70,20,1,2,4), k=1)[0], ) yield Reflection, dict( experience=True, course=True, informed=True, understanding=1, )