multiple_choice_questions = [ dict( name="question2", label="The common account contains your and your matched worker's task earnings.", choices=["True", "False"], solution=(lambda player: "True"), ), dict( name="question3", label="What is the type of the person with whom you are splitting the common account?", choices=["High", "Low"], solution=(lambda player: str(player.participant.reward_group.get_opposite())), ), dict( name="question1", label="You split your earnings with:", choices=["Your Matched Worker", "Your Conversation Partner"], solution=(lambda player: "Your Matched Worker"), ), dict( name="question4", label="You discuss your choice with:", choices=["Your Matched Worker", "Your Conversation Partner"], solution=(lambda player: "Your Conversation Partner"), ), ]