Skip to content

Instantly share code, notes, and snippets.

@cocuh
Created March 8, 2014 04:43
Show Gist options
  • Save cocuh/9425478 to your computer and use it in GitHub Desktop.
Save cocuh/9425478 to your computer and use it in GitHub Desktop.
勉強しながら書いたもの
# 奇数変換 16進数まで対応
# f(10,10) = '10'(10)
# f(10,8) = '12'(8)
# f(10,16) = 'A'(16)
f=lambda x,n,p='':x and f(x//n,n,'%X'%(x%n)+p)or p
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment