Last active
March 21, 2018 02:07
-
-
Save johwanghee/5a4f79a7d1adabc4629ccd5b35d6b86e to your computer and use it in GitHub Desktop.
python3.6 decimal encode
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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