Changes
/* Standard Python Operators */
!scope="col"| Type
!scope="col"| Description
|-
| style="width:80px;" | -p
| style="width:150px;" | Std. Python operator
| style="width:270px;" | negative of p
|-
| style="width:80px;" | p=q
| style="width:150px;" | Std. Python operator
| style="width:270px;" | p is equal to q
|-
| style="width:80px;" | p+q
| style="width:150px;" | Std. Python operator
| style="width:270px;" | sum of p and q
|-
| style="width:80px;" | p-q
| style="width:150px;" | Std. Python operator
| style="width:270px;" | difference p and q
|-
| style="width:80px;" | p*q
| style="width:150px;" | Std. Python operator
| style="width:270px;" | product of p and q
|-
| style="width:80px;" | p/q
| style="width:150px;" | Std. Python operator
| style="width:270px;" | quotient of p over q
|-
| style="width:80px;" | p**q
| style="width:150px;" | Std. Python operator
| style="width:270px;" | p to the power of q
|-
| style="width:80px;" | p%q
| style="width:150px;" | Std. Python operator
| style="width:270px;" | p modulus q
|-
| style="width:80px;" | p==q
| style="width:150px;" | Std. Python operator
| style="width:270px;" | p logically equal to q
|-
| style="width:80px;" | p>q
| style="width:150px;" | Std. Python operator
| style="width:270px;" | p is greater than q
|-
| style="width:80px;" | p>=q
| style="width:150px;" | Std. Python operator
| style="width:270px;" | p is greater than or equal to q
|-
| style="width:80px;" | p<q
| style="width:150px;" | Std. Python operator
| style="width:270px;" | p is less than q
|-
| style="width:80px;" | p<=q
| style="width:150px;" | Std. Python operator
| style="width:270px;" | p is less than or equal to q
|-
| style="width:80px;" | !p
| style="width:150px;" | Std. Python operator
| style="width:270px;" | Logical not p
|-
| style="width:80px;" | p and q
| style="width:150px;" | Std. Python operator
| style="width:270px;" | p Boolean and q
|-
| style="width:80px;" | p or q
| style="width:150px;" | Std. Python operator
| style="width:270px;" | p Boolean or q
|-
|}