🤖 Ejemplo rápido / Quick example:
def es_par(n):
if n % 2 == 0:
return "Es par"
return "Es impar"
print(es_par(10))
if n % 2 == 0:
return "Es par"
return "Es impar"
print(es_par(10))
☝️ Copia tu código, pégalo abajo y presiona ENTER para analizarlo y mejorarlo.
Copy your code, paste below and hit ENTER to have it analyzed and improved.
📦 Opciones de auditoría / Audit options:
📧 ¿Dudas? / Questions? teleware@gmail.com
Copy your code, paste below and hit ENTER to have it analyzed and improved.
📦 Opciones de auditoría / Audit options:
📧 ¿Dudas? / Questions? teleware@gmail.com
tupython@user:~$