Course Content
Data Types in Python
Compulsory Math
|Sign|What Does It Do|Example|Result|Features of Use|
|---|---|---|---|---|
|+
|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|Do not divide by zero|
|**
|Raises the right-hand number to the power of the left-hand number|2 ** 3
|8|-|
Section 1.
Chapter 7