Skip to Content
Python Distilled ―プログラミング言語Pythonのエッセンス
book

Python Distilled ―プログラミング言語Pythonのエッセンス

by David M. Beazley, 鈴木 駿
October 2023
Intermediate to advanced
336 pages
4h 31m
Japanese
O'Reilly Japan, Inc.
Content preview from Python Distilled ―プログラミング言語Pythonのエッセンス

2章演算子、式、データ操作

この章ではデータ操作に関連するPythonの式、演算子、評価規則について説明します。有益な演算には式が欠かせません。

2.1 リテラル

リテラルとは424.2"forty-two"などプログラムに直接入力する定数値のことです。

整数リテラルは任意長の符号付き整数値を表します。整数リテラルは2進数、8進数、10進数、16進数で指定します。

42  # 10進数
0b101010  # 2進数
0o52  # 8進数
0x2A  # 16進数

先頭の基数部分(2進数は0b、8進数は0o、16進数は0x)は整数値には含まれません。上記のリテラルをprint()などで表示すると、結果はすべて42です。組み込み関数のbin()oct()hex()は、引数の整数をそれぞれ0b0o0xが付いた文字列に変換します。

>>> bin(42)
'0b101010'
>>> oct(42)
'0o52'
>>> hex(42)
'0x2a'

浮動小数点数は小数点(.)を付けて表記するか、指数表記としてeまたはEを使って表記します。以下はすべて浮動小数点数です。

4.2
42.
.42
4.2e+2
4.2E2
-4.2e-2

内部的には、浮動小数点数はIEEE 754で定義された倍精度(64ビット)値†1です。

[†1] 訳注:標準モジュールsysにあるタプルsys.float_infoで浮動小数点数の精度や内部表現に関する情報を確認できる。

数値リテラルでは、桁区切り文字としてアンダースコアを使い、読みやすくすることもできます。

123_456_789
0x1234_5678
0b111_00_101
123.789_012

なお、桁区切り文字は数値には含まれず、ソースコード上で桁数の多い数値リテラルを読みやすくするためだけに使われます ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

Effective Python 第3版 ―Pythonプログラムを改良する125項目

Effective Python 第3版 ―Pythonプログラムを改良する125項目

Brett Slatkin, 鈴木 駿
入門 Python 3 第2版

入門 Python 3 第2版

Bill Lubanovic, 鈴木 駿, 長尾 高弘
Python Distilled

Python Distilled

David M. Beazley
Binary Hacks Rebooted ―低レイヤの世界を探検するテクニック89選

Binary Hacks Rebooted ―低レイヤの世界を探検するテクニック89選

河田 旺, 小池 悠生, 渡邉 慶一, 佐伯 学哉, 荒田 実樹, 鈴木 創, 中村 孝史, 竹腰 開, 光成 滋生, hikalium, 浜地 慎一郎

Publisher Resources

ISBN: 9784814400461Publisher Website