-3
I’m doing a simple exercise in python and I don’t understand the reason for my mistake.
num1 = (int(input("Digite o primeiro número"))
print("Digite a operação desejada, sendo:")
print("* --> MULTIPLICAÇÃO")
print("/ --> DIVISÃO")
print("+ --> SOMA")
op = input("- --> SUBTRAÇÃO")
num2 = (int(input("Digite o segundo número"))
The error is on the line print("Digite a operação desejada, sendo:")
and says SyntaxError: invalid syntax
I appreciate anyone who can help me!
Has an extra parenthesis in the first line. Remove the
(
beforeint
- same goes for the last line– hkotsubo