0
I’m very beginner in python and I’m making a simple calculator, but I have a question that I can’t find anywhere. I want to make a condition for, if the chosen operation is */
(what I used to symbolize square root), he ignore the next question. exemplifying:
n1 = int(input('Digite o número 1: '))
op = input('Digite a operação: ')
n2 = int(input('Digite o número 2: '))
I want that if I type */
(responding to op) he skip the next order, which would be Digite o número 2:
and go straight to calculus
Thank you very much!! It worked great!!!
– Eric Silveira