OPERATORS AND ,OR,NOT USING PYTHON PROGRAMMING
x =10
y = 8
print(x>6 and y<10)
print(x<7 or y>5)
print(not(x>=10 and y>6))
print((x+y)>10)
print((x-y)>=2)
OUTPUT:
True
False
NALLAMUTHU GOUNDER MAHALINGAM COLLEGE POLLACHI-642001 ...