Menu
Coddy logo textTech

Recap - Simple Calculator

Part of the Fundamentals section of Coddy's Python journey — lesson 22 of 77.

challenge icon

Challenge

Beginner

You are given a code which gets as input two numbers n1 and n2 and a character op.

Note: we will learn in next lessons how to get input from the user, currently just don't touch the three first lines.

 

The possible values for op are '+', '-', '/' and '*'

Your task is to set the variable result based on the conditions:

  • if op is '+', set result with n1 + n2.
  • if op is '-', set result with n1 - n2.
  • if op is '/', set result with n1 / n2.
  • if op is '*', set result with n1 * n2.

Try it yourself

n1 = int(input()) # Don't change this line
n2 = int(input()) # Don't change this line
op = input() # Don't change this line
result = 0

# Don't change the line below
print(f"result = {result}")

All lessons in Fundamentals