1
print ("Insira dois valores para serem comparados:")
Valor1= float(input("Escreva um número:"))
Valor2= float(input("Escreva outro número:"))
print ("Os números que você inseriu foram esses?","\n", Valor1, "\n", Valor2)
sim = str
não = str
if (str(input())=="não") or (str(input())=="sim"):
if str(input(sim)):
if (Valor1 > Valor2):
print ("O primeiro valor é maior que o segundo")
if (Valor2 > Valor1):
print ("O segundo valor é maior que o primeiro")
if (Valor2 == Valor1):
print ("Os números são iguais")
if str(input(não)):
print ("Então insira os números corretos")
Why does it keep showing the class of the variable Sim
after I answered if I correctly typed the values?
And apparently he asks for the answer more than once, I don’t understand why.
I tried to make the code using while
instead of if
to begin probation and close the sequences with break
, but the same problem happened.
That’s why I asked, you didn’t accept the answer, you just voted, I realized you didn’t understand the difference, take a look again at [tour].
– Maniero