+ 3
Help me pls (python)
https://code.sololearn.com/cLTRoUHn6KO8/?ref=app Comment on this post the fixed code thx in advance!
3 Respostas
+ 1
한국 소녀
Are you trying to make a calculator??
+ 1
I would suggest entering operatori second, or just take the whole input as a string and parse it for the information.
+ 1
# 긴 고양이를 쓸 필요 없어, 시도해봐…
num1 = input()
calc = input()
num2 = input()
result = eval(num1+calc+num2)
print(result)
# 평가의 주요 기능 eval()