course content

Course Content

Data Types in Python

Compulsory MathCompulsory 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|-|

question-icon

Follow the comments.

# Calculate the complex number divided by the integer
number_1 =
___


# Calculate the addition of integer and floating number
number_2 =
___


# Subtract the integer number from the complex number
number_3 =
___


# Calculate the multiplication of floating point number and complex
number_4 =
___


# Raise floating point number to the power of integer number
number_5 =
___


print(number_1)
print(number_2)
print(number_3)
print(number_4)
print(number_5)
(1.6-2j)
800.6
(3-10j)
(6364.8-7956j)
318767379519989.3

Click or drag`n`drop items and fill in the blanks

dots
79.56e1 + 5
dots
(8 - 10j) - 5
dots
(8 - 10j) / 5
dots
(8 - 10j) * 79.56e1
dots
79.56e1 ** 5
down-icon

Section 1.

Chapter 7