0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Pythonの条件式について

Posted at

自分用のメモですが、Pythonの条件式をメモしておきます。

Pythonにおける条件式には、以下のようなものがあります。

a == b: aとbが等しい場合にTrue
a != b: aとbが等しくない場合にTrue
a < b: aがbより小さい場合にTrue
a > b: aがbより大きい場合にTrue
a <= b: aがb以下の場合にTrue
a >= b: aがb以上の場合にTrue
a is b: aとbが同じオブジェクトである場合にTrue
a is not b: aとbが異なるオブジェクトである場合にTrue
a in b: bがaを含む場合にTrue
a not in b: bがaを含まない場合にTrue
これらの条件式は、if 文の条件式や、while 文の条件式、for 文の条件式など、Pythonの様々な文で使用されます。条件式を使うことで、プログラムの実行を制御することができます。

0
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?