Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created January 15, 2018 13:42
Show Gist options
  • Save Fhernd/d2e6c5f42f2bc111b60446c62278b676 to your computer and use it in GitHub Desktop.
Save Fhernd/d2e6c5f42f2bc111b60446c62278b676 to your computer and use it in GitHub Desktop.
Conversión de hexadecimal a entero.
hex = 'FF'
decimal = int(hex, 16)
print(decimal)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment