web-dev-qa-db-ja.com

ブール値を使用するIfステートメントの構文

皆さん、最近python3 HypeTrainに参加しました!しかし、私はあなたがブールにif文を使用する方法を疑問に思いました:例:

RandomBool = True
#and now how can i check this in an if statement? Like the following:
if RandomBool == True:
    #DoYourThing

また、このようなブール値を切り替えることはできますか?

RandomBool1 == True   #Boolean states True
if #AnyThing:
    RandomBool1 = False   #Boolean states False from now on? 
7
Lucidity

Boolの値は自由に変更できます。 ifに関して:

if randombool == True:

動作しますが、使用することもできます:

if randombool:

何かが間違っているかどうかをテストする場合は、次を使用できます。

if randombool == False

しかし、あなたも使用することができます:

if not randombool:
37
Mathime