R
R
Redrik052020-08-21 17:52:04
Python
Redrik05, 2020-08-21 17:52:04

Is it possible to pass arithmetic operators through input?

Good afternoon! I am studying Python and the following question arose:

Is it possible to immediately convert the strings received through input into arithmetic operators.

For example: we receive three strings via input:
num_1 = int('7') #immediately convert to an integer value
num_2 = int('8') #immediately convert to an integer value
operator = '+' #here you need to turn the string into a mathematical symbol
further output: print(num_1, operatot, num_2)

something like this. a?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
T
Ternick, 2020-08-21
@Redrik05

Your question can be solved a little differently :)
Something like this:

exp = input("Please input a math expression:\n")
print(f"result of you expression is {eval(exp)}")

There can be a lot of solutions to this simple problem, in my opinion this option is the easiest.
If you are satisfied with the answer, mark the answer as solved.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question