Pythonにはオブジェクトの比較ができるisと==(比較演算子)があります。本記事では2つの演算子の特徴と違いを解説します。
Python 基礎文法の教科書を執筆しました!
is演算子
is演算子は2つのオブジェクトが同一であればTrueを返します。判定にはid関数が使われています。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
num1 = 8 | |
num2 = 8 | |
print(id(num1)) | |
print(id(num2)) | |
print(num1 is num2) | |
# 132836683891152 | |
# 132836683891152 | |
# True |
関連記事
【Python】識別値を取得できるid関数について解説
==演算子
==演算子は値が等しければTrueを返します。識別値が等しいかどうかは関係ありません。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = [] | |
b = [] | |
print(a == b) | |
print(a is b) | |
# True | |
# False | |
print(id(a)) | |
print(id(b)) | |
# 131949168802496 | |
# 131949168801856 |
ちなみにa = []、b = []とすると、 aとbは異なったリストを参照することが保証されています。
詳しくは以下の記事をご確認ください。
【Python】ミュータブルとイミュータブルを理解する
!=演算子
!=演算子は値が等しければFalseを返します。
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a = [] | |
b = [] | |
print(a != b) | |
# False |
まとめ
isと==について解説しました。2つの違いを理解して、状況に応じて使えるようにしましょう。
Pythonには
実力を証明できる資格があります
PythonにはPython3エンジニア認定基礎試験という試験があります。
試験範囲がPythonチュートリアル(公式ドキュメント)となっているため、Pythonの基礎を全て押さえることができます。
- 独学で勉強していて、どれくらい理解できているのか調べたい
- 今の仕事も続けつつ、キャリアの幅を広げたい
- 新しい技術としてPythonを習得したい
そんな方は是非詳細をご確認ください。
おすすめ記事
【入門者向け】効率よくPythonを習得する3Step
【難易度爆下げ】Python3エンジニア認定基礎試験 公式問題集レビュー
【Python3エンジニア認定基礎試験】合格体験記からみんなの勉強方法を探ってみた
コメント