Python Revision Notes
5. Operators
-
Arithmetic:
+ - * / % // ** -
Comparison:
== != > < >= <= -
Logical:
and or not -
Assignment:
= += -= *=etc. -
Membership:
in, not in -
Identity:
is, is not
6. Conditional Statements
Arithmetic: + - * / % // **
Comparison: == != > < >= <=
Logical: and or not
Assignment: = += -= *= etc.
Membership: in, not in
Identity: is, is not
if x > 0:
print("Positive")
elif x == 0:
print("Zero")
else:
print("Negative")
Comments
Post a Comment