Group Boys Presntation
Group Boys Presntation
== Equal x == y Try it »
print(x == y)
print(x != y)
x=5
y=3
print(x > y)
print(x < y)
print(x >= y)
print(x <= y)
and Returns True if both statements are true x < 5 and x < 10 Try it »
not Reverse the result, returns False if the result is not(x < 5 and x < 10) Try it »
true
x=5
# returns True because one of the conditions are true (5 is greater than 3, but 5 is not less than 4)
TRUE
x=5
** Exponentiation x ** y Try it »