Boolean Type
Boolean Type: bool
.
How to set a boolean variable
12345a = True b = False print(a) print(b)
Boolean operator examples
Operator | Returns |
---|---|
>= | True if a number is greater than or equal to another |
<= | True if a number is less than or equal to another |
== | True if two values are equivalent |
!= | True if two values are not equivalent |
&& | True if both values are True |
! | True if the value is False |
1print(4 == 6)
Tout était clair ?
Merci pour vos commentaires !
Section 3. Chapitre 1
Demandez à l'IA
Demandez à l'IA
Posez n'importe quelle question ou essayez l'une des questions suggérées pour commencer notre discussion
Suggested prompts:
Posez-moi des questions sur ce sujet
Résumer ce chapitre
Afficher des exemples du monde réel
Awesome!
Completion rate improved to 2.7
Boolean Type
Glissez pour afficher le menu
Boolean Type: bool
.
How to set a boolean variable
12345a = True b = False print(a) print(b)
Boolean operator examples
Operator | Returns |
---|---|
>= | True if a number is greater than or equal to another |
<= | True if a number is less than or equal to another |
== | True if two values are equivalent |
!= | True if two values are not equivalent |
&& | True if both values are True |
! | True if the value is False |
1print(4 == 6)
Tout était clair ?
Merci pour vos commentaires !
Section 3. Chapitre 1