Statement Python Tutorial

x = 'A'
if x == 'c':
    print "c"
elif x == 'b':
    print "b"
else:
    print 'A!'