I'm trying to make a program in which I use a list and that program returns 2 lists one with the other pairs with the odd ones.
lista = [0,1,2,3,4,5,6,7,8,9,10]
def par(numero):
if numero % 2 == 0:
return numero
def impar(numero):...
asked by
11.12.2016 / 23:12