Skip to content

Instantly share code, notes, and snippets.

@parzibyte
Created June 26, 2021 01:10
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/dd4b8f28d9241d6a0e079f45e0042c07 to your computer and use it in GitHub Desktop.
Save parzibyte/dd4b8f28d9241d6a0e079f45e0042c07 to your computer and use it in GitHub Desktop.
# https://parzibyte.me/blog
numero = int(input("Ingresa un número: "))
if numero & 1 == 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