Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 7, 2021 17:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parzibyte/9039c32d55c60a9bec406ce07c48e3ce to your computer and use it in GitHub Desktop.
Save parzibyte/9039c32d55c60a9bec406ce07c48e3ce to your computer and use it in GitHub Desktop.
def capicua(numero):
numero_invertido = invertir_numero(numero)
if numero == numero_invertido:
return True
else:
return False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment