I would like to have an easyGUI multchoicebox display output based on the correct choices being made. The following doesn't work (i.e it doesn't show 'correct')
import easygui
fieldnames = ["Incorrect", "Correct", "Also Correct"]
choice = easygui.multchoicebox("Pick an option.", "", fieldnames)
if choice == fieldnames[1] and fieldnames[2]:
easygui.msgbox('Correct!')
else:
easygui.msgbox('Incorrect')
#Also tried:
#if choice == "Correct" and "Also Correct":