Difference between revisions of "Python:Operators"

From wiki
Jump to navigation Jump to search
(Created page with "Most operators work as usual. ;a / b :Divide to floating point (in python2 the result datatype is determined by the arguments datatype i.e. both arguments int => result is in...")
 
m
Line 1: Line 1:
 +
[[Category:Python]]
 
Most operators work as usual.
 
Most operators work as usual.
  

Revision as of 23:56, 13 January 2018

Most operators work as usual.

a / b
Divide to floating point (in python2 the result datatype is determined by the arguments datatype i.e. both arguments int => result is int)
a // b
Divide to integer (truncated, not rounded)
a % b
Modulo
a ** b
Power
a << b
bit-shift left
a >> b
bit-shift right
a & b
And
a | b
Or
a ^ b
Xor