What is boolean ? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 3

What is boolean ?

I'm unable to understand the boolean,comparison ,operators and logics . suggest a way I can learn it

28th Apr 2021, 7:37 AM
RAVIKIRAN
3 Answers
+ 3
Booleans are variables which can store only two values, True or False, it's useful for keeping track of things with a Yes/No answer. For example, a player might have a boolean called can_jump to keep track of wether the player can jumo or not.
28th Apr 2021, 7:54 AM
Shahil Ahmed
Shahil Ahmed - avatar
+ 3
Many built-in python operators return booleans as well, for example, > < >= <= == 5 > 6 will return the boolean value False. 5 < 6 will return the boolean value True. You can play around and see for yourself by doing print(10 == 10)
28th Apr 2021, 7:56 AM
Shahil Ahmed
Shahil Ahmed - avatar
0
Booleans are conditions,they are used for comparing if that is true and false The boolean is divided in False and True True = 1 False = 0
28th Apr 2021, 12:24 PM
Katdotbrush
Katdotbrush - avatar