• home
  • about
  • 全ての投稿
  • ソフトウェア・ハードウェアの設定のまとめ
  • 分析関連のまとめ
  • ヘルスケア関連のまとめ
  • 生涯学習関連のまとめ

python bin

公開日 2022-11-30

pythonの2進数表記

タグ Python format bin


pythonの2進数表記

bin関数

assert bin(16) == '0b10000'

format関数

assert format(16, 'b') == '10000'

参考

  • Built-in Functions/docs.python.org

関連記事

  • python one-liner 2022-11-26
  • python sortedcontainers 2022-11-26
  • python heapq 2022-12-11
  • python pickle 2022-12-11
  • python exception 2022-11-17


Python format bin Share Post