Skip to content

Instantly share code, notes, and snippets.

@johwanghee
Last active March 21, 2018 02:07
Show Gist options
  • Save johwanghee/5a4f79a7d1adabc4629ccd5b35d6b86e to your computer and use it in GitHub Desktop.
Save johwanghee/5a4f79a7d1adabc4629ccd5b35d6b86e to your computer and use it in GitHub Desktop.
python3.6 decimal encode
# Decimal to Hex
'{:02x}'.format(100000)
import base36
# base36 https://pypi.python.org/pypi/base36/0.1.1
base36.dumps(100000)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment