Get startedGet started for free

Python as a calculator

Python is perfectly suited to do mathematical calculations. It can do addition, subtraction, multiplication and division, to name a few.

Now it's your turn to practice doing math in Python!

This exercise is part of the course

Introduction to Python for Finance

View Course

Exercise instructions

Complete the following tasks by replacing ____ with the correct Python code:

  • Print the sum of 4 and 5.
  • Print the result of subtracting 5 from 5.
  • Print the result of multiplying 3 and 5.
  • Print the result of dividing 10 by 2.

Hands-on interactive exercise

Have a go at this exercise by completing this sample code.

# Addition
____

# Subtraction
____

# Multiplication
____

# Division
____
Edit and Run Code