Operations in mathematic
** exponentiation
- multiplication
/ division
- additon
- subtraction
// floor division
% modular operation
+= augmented assignment
The order of mathematic operation:
1.parenthesis
- exponentiation 3 ** 2
3.multiplication or division
4.addition or subtraction
Math Module
How to import math module?
import math
How to search the guide of module?
search in the google: python 3 math module
网友评论