Last active
December 15, 2015 23:48
-
-
Save ricardosiri68/5342430 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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