pyhon .math code example

Example 1: how to import math in python

import math

Example 2: math pyhon ?

Arithmetic:
operator   |  name                    | example |
+			Addition	    			x + y	
-			Subtraction	    			x - y	
*			Multiplication				x * y	
/			Division	    			x / y	
%			Modulus     				x % y	
**			Exponentiation				x ** y	
//			Floor division				x // y

Comparison:
Operator |           Name                  | Example |
==				Equal	       				x == y	
!=				Not equal					x != y	
>				Greater than				x > y	
<				Less than					x < y	
>=				Greater than or equal to	x >= y	
<=				Less than or equal to	    x <= y

Assignment:
Operator  |	Example	|
=	     	x = 5	
+=			x += 3	
-=			x -= 3	
*=			x *= 3		
/=			x /= 3	
%=			x %= 3		
//=			x //= 3	
**=			x **= 3	
&=			x &= 3	
|=			x |= 3			
^=			x ^= 3			
>>=			x >>= 3				
<<=			x <<= 3

Tags:

Css Example