def question(team, category, card):
string = "Question for team " + team + " in category " + category + ":\n\n" + card["Questions"] + "\n\n"
for key, val in card.items():
if key == "Correct" or key == "Questions":
continue
else:
string += key + ". " + val + "\n"
return string