1. 程式人生 > >1 > 2 and 3 < 4 or 4 > 5 and 2 > 1 or 9 < 8

1 > 2 and 3 < 4 or 4 > 5 and 2 > 1 or 9 < 8

a,b,c,d,e,f,g=1,2,3,4,5,8,9
m = a > b and c < d or c > e
n = b > a or g < f
x = m and n
info = '''
m is %s
n is %s
x is %s
m is False
n is True
x is False
''' %(m,n,x)
print(info)