web-dev-qa-db-fra.com

Syntaxe d'une instruction If utilisant un booléen

Hé les gars, je viens de rejoindre le python3 HypeTrain! Cependant, je me demandais simplement comment utiliser une instruction if sur un booléen: Exemple:

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

Et puis-je également changer la valeur d'un booléen comme celui-ci?

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

Vous pouvez modifier la valeur d'un bool comme vous le souhaitez. Quant à un si:

if randombool == True:

fonctionne, mais vous pouvez également utiliser:

if randombool:

Si vous voulez tester si quelque chose est faux, vous pouvez utiliser:

if randombool == False

mais vous pouvez également utiliser:

if not randombool:
37
Mathime