Skip to content

Instantly share code, notes, and snippets.

@ricardosiri68
Last active December 15, 2015 23:48
Show Gist options
  • Save ricardosiri68/5342430 to your computer and use it in GitHub Desktop.
Save ricardosiri68/5342430 to your computer and use it in GitHub Desktop.
i=0
in_number = raw_input("INGRESE UN NUMERO:")
lista = []
while in_number:
lista.append(int(in_number))
in_number = raw_input("INGRESE UN NUMERO:")
for number in lista:
if number % 2 == 0:
print number
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment