I am writing a code in Python that lists items in an alternative way. For example: [a, b, c], [1,2,3] → [a, 1, b, 2, c, 3]. But I get an error "List index out of range". This is my code:
def unir_listas_alterno(lista1,lista2):
nuevaLista =...
asked by
13.11.2017 / 17:26