Python 10進数の数値を8進数文字列に変換するサンプル
環境
Python 3.9.13
Windows 10 Home 64bit
PyCharm 2022.2.1 (Community Edition)
構文
oct(10進数)
oct 関数を使うと、10進数表記の数値を8進数表記の文字列に変換できます。
使用例
# coding: utf-8 # 10進数の数値を8進数文字列に変換 x = oct(63) y = oct(64) z = oct(100) res = [x, y, z] print(res)
実行結果
['0o77’, '0o100’, '0o144’]