(Keywords are special reserved words)
True | False | None | and | as |
asset | def | class | continue | break |
else | finally | elif | del | except |
global | for | if | from | import |
raise | try | or | return | pass |
nonlocal | in | not | is | lambda |
Python Operator
- Arithmetic (+,-,*, %(remainder), ** exponent, // floor )
- Comparison Operator (==, != , <= , <=,>,<
- Assignment Operator ( =, +=,-=, *= , %=, **= (power) ,//= (floor)
- Logical Operators (and , or, not )
- Bitwise Operator ( & (and) , | (or) ,^ (xor), ~ (nor) , << (left Shift) , << (right shift)
- Membership Operator (in, not in )
- Identity Operator ( is, is not)
No comments:
Post a Comment