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
Exercise instructions
Complete the following tasks by replacing ____ with the correct Python code:
- Print the sum of
4and5. - Print the result of subtracting
5from5. - Print the result of multiplying
3and5. - Print the result of dividing
10by2.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Addition
____
# Subtraction
____
# Multiplication
____
# Division
____