0
I am learning programming logic with Python and I don’t understand how the input x DOES NOT interfere with the iteration of the x from the while loop, which is the same variable. Please explain to me, Valew!!!
#!/usr/bin/python3
numeros = [0,0,0,0,0]
x = 0
while x < 5:
numeros[x] = int(input("Números %d:" %(x + 1) ))
x += 1
while True:
escolhido = int(input("Que posição você quer imprimir (0 para sair): "))
if escolhido == 0:
break
print("Você escolheu o número: %d" %( numeros[escolhido -1] ))
that
x
ofinput
?– Maniero