Course Content
Data Types in Python
Data Types in Python
Compulsory Math
Sign | What Does It Do | Example | Result | Application features |
+ | Adds numbers | 5 + 4 | 9 | - |
- | Subtracts the right-hand number from the left-hand one | 5 - 4 | 1 | - |
* | Multiplies numbers | 5 * 4 | 20 | - |
/ | Divides the left-hand number by the right-hand one | 20 / 4 | 5.0 | Do not divide by zero |
** | Elevates the number on the left to the power of the number on the right. | 2 ** 3 | 8 | - |
Thanks for your feedback!