Comparison Operators

 # Comparison Operators

a = (14<=7)
b = (14>=7)
c = (14<7)
d = (14>7)
e = (14==7)
f = (14!=7)       #[!= not equal to]

print(a)
print(b)
print(c)
print(d)
print(e)
print(f)
TERMINAL.....

False True False True False True



Comments

Popular posts from this blog