Answer the question
In order to leave comments, you need to log in
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
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)}")
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question