Voglio sapere se è possibile utilizzare gli array per un'alternativa più valida di ottenere un numero di ingressi non predeterminato come un array e con un numero indefinito di input. (Python)
codice originale - >
if inputs == 1:
print("more than 1")
elif inputs == 2:
a1 = int(input("type integer\n"))
a2 = int(input("type integer\n"))
elif inputs == 3:
a1 = int(input("type integer\n"))
a2 = int(input("type integer\n"))
a3 = int(input("type integer\n"))
elif inputs == 4:
a1 = int(input("type integer\n"))
a2 = int(input("type integer\n"))
a3 = int(input("type integer\n"))
a4 = int(input("type integer\n"))
elif inputs == 5:
a1 = int(input("type integer\n"))
a2 = int(input("type integer\n"))
a3 = int(input("type integer\n"))
a4 = int(input("type integer\n"))
a5 = int(input("type integer\n"))
elif inputs == 6:
a1 = int(input("type integer\n"))
a2 = int(input("type integer\n"))
a3 = int(input("type integer\n"))
a4 = int(input("type integer\n"))
a5 = int(input("type integer\n"))
a6 = int(input("type integer\n"))
elif inputs == 7:
a1 = int(input("type integer\n"))
a2 = int(input("type integer\n"))
a3 = int(input("type integer\n"))
a4 = int(input("type integer\n"))
a5 = int(input("type integer\n"))
a6 = int(input("type integer\n"))
a7 = int(input("type integer\n"))
elif inputs == 8:
a1 = int(input("type integer\n"))
a2 = int(input("type integer\n"))
a3 = int(input("type integer\n"))
a4 = int(input("type integer\n"))
a5 = int(input("type integer\n"))
a6 = int(input("type integer\n"))
a7 = int(input("type integer\n"))
a8 = int(input("type integer\n"))
elif inputs == 9:
a1 = int(input("type integer\n"))
a2 = int(input("type integer\n"))
a3 = int(input("type integer\n"))
a4 = int(input("type integer\n"))
a5 = int(input("type integer\n"))
a6 = int(input("type integer\n"))
a7 = int(input("type integer\n"))
a8 = int(input("type integer\n"))
a9 = int(input("type integer\n"))
else:
print("less then 10")