course content

Course Content

Introduction to Python | Mobile-Friendly

Arithmetic OperationsArithmetic Operations

Python is widely used in machine learning problems, which contain advanced math. We will start with the very basic arithmetic operations. These are:

  • addition (+ operator)
  • subtraction (- operator)
  • multiplication (* operator)
  • division (/ operator)

Task

Perform the simplest math operations:

  1. Add 203 and 34.
  2. Subtract 18 from 34.
  3. Divide 107 by 19.
question-icon

Fill in the blanks to complete the tasks.

# Addition
print(203
_ _ _
34)
# Subtraction
print(34
_ _ _
18)
# Division
print(107
_ _ _
19)
237
16
5.631578947368421

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

dots
/
dots
+
dots
*
dots
-
down-icon

Section 1.

Chapter 4