Deep LearningPython

【Python】PythonのBoolean(ブーリアン)

Python

PythonのBoolean(ブーリアン)を紹介します。

ターミナルでPythonのinteractive mode(対話モード)を起動します。

% python
Python 3.7.7 (default, Mar 10 2020, 15:43:33) 
[Clang 11.0.0 (clang-1100.0.33.17)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> 
<div class="content">
  <p>PythonはBoolと言う型があります。</p>
 <p>True とFalseという二つの値をどちかを取ります。</p>
 <p>演算子はand、or、not、+、-、*、/があります</p>
</div>
>>> student = True                #学生ですか?
>>> highschool = False   #中学生ですか?
>>> type(highschool)
<class 'bool'>
>>> student
True

>>> highschool
False
>>> student and highschool  #学生 かつ 中学生
False
>>> student or highschool  #学生 または 中学生
True