I have this dictionary
score_dict = \
{5: ['Far above average', 'Extremely well', 'Extremely effective', 'Extremely fast', 'Always', 'Strongly agree', 'Far exceeds expectations'],
4: ['Somewhat above average', 'Very well', 'Very effective', 'Somewhat fast', 'Most of the time', 'Somewhat agree', 'Exceeds expectations'],
3: ['Average', 'Moderately well', 'Moderately effective', 'Average', 'About half the time', 'Neither agree nor disagree', 'Equals expectations'],
2: ['Somewhat Below Average', 'Slightly well', 'Slightly effective', 'Somewhat slow', 'Sometimes', 'Somewhat disagree', 'Short of expectations'],
1: ['Far Below Average', 'Not well at all', 'Not effective at all', 'Extremely slow', 'Never', 'Strongly disagree', 'Far short of expectations'],
}
Why does this not print True
?
if 'Far above average' in score_dict.values():
print("True")