generate functionMon, 01 May 2023
Crear un programa que te permita hacer un incremento del valor de 3, iniciando del número 17 hasta el 32 y sumar los números pares.
def increment(i, j): while i <= j: i += 3 if i % 2 == 0: print(i) increment(17, 32)
Python
Generate More