Skip to content

Instantly share code, notes, and snippets.

@parzibyte

parzibyte/par.py Secret

Created June 26, 2021 01:06
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/a6ca65a5ae589e7974865f0d0b67d29d to your computer and use it in GitHub Desktop.
Save parzibyte/a6ca65a5ae589e7974865f0d0b67d29d to your computer and use it in GitHub Desktop.
# https://parzibyte.me/blog
numero = int(input("Ingresa un número: "))
if numero % 2 == 0:
print("El número es par")
else:
print("El número es impar")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment