Generation

generate functionMon, 27 Mar 2023

Inicialice un MATRIZ con los números pares menores a 20 muestre su contenido

def primos(): lista=[] for i in range(20): if i%2==0: lista.append(i) return lista

Want to kickstart your project?Use the new AI Studio to create your code