...

/

Challenge 3: Implement a Calculator Class

Challenge 3: Implement a Calculator Class

In this exercise, you have to implement a calculator that can perform addition, subtraction, multiplication, and division.

Problem statement

Write a Python class called Calculator by completing the tasks below:

Task 1

Initializer

Implement an initializer to initialize the values of num1 and num2.

Properties

  • num1
...