I have an if statement in python like so
if number == 1 and letter == a:
print 'Correct'
else:
print 'Incorrect'
if number == 2 and letter == b:
print 'Correct'
else:
print 'Incorrect'
But it doesn't work.. How do you construct something like this?