cantidad = int(input("¿Cuántos números vas a introducir? "))
for i in range(cantidad):
numero = float(input("Ingresa un número: "))
if numero > 0:
print(numero, "es positivo")
elif numero < 0:
print(numero, "es negativo")
else:
print(numero, "es cero")
To embed this project on your website, copy the following code and paste it into your website's HTML: