連載目次 n = 13345 # 16進数に変換 result = hex(n) # 戻り値は文字列であることに注意 print(result) # 0x3421 print(type(result)) #
もっと詳しく