aboutsummaryrefslogtreecommitdiff
path: root/Python Operators.wiki
diff options
context:
space:
mode:
Diffstat (limited to 'Python Operators.wiki')
-rw-r--r--Python Operators.wiki16
1 files changed, 16 insertions, 0 deletions
diff --git a/Python Operators.wiki b/Python Operators.wiki
index 5f79eac..09c168b 100644
--- a/Python Operators.wiki
+++ b/Python Operators.wiki
@@ -1,4 +1,6 @@
== Operators ==
+https://docs.python.org/3/library/operator.html
+
{{{
< __lt__
<= __le__
@@ -23,6 +25,20 @@
^ __xor__
+ (sequences) __concat__
++= __iadd__, __iconcat__
+&= __iand__
+//= __ifloordiv__
+<<= __ilshift__
+%= __imod__
+*= __imul__
+|= __ior__
+**= __ipow__
+>>= __irshift
+-= __isub__
+/= __itruediv__
+^= __ixor__
+
+
** __pow__
in __contains__