Still not get it. Anybody help me?? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 3

Still not get it. Anybody help me??

24th Dec 2016, 11:04 AM
Amar Ikhwan
Amar Ikhwan - avatar
3 Answers
+ 3
you need to tell us what your problem is
24th Dec 2016, 4:21 PM
YuHai
YuHai - avatar
0
which part you don't understand? be a bit more specific
15th Jan 2017, 1:13 PM
Omar
Omar - avatar
0
I'm going to assume you mean you don't understand Boolean values in general, since you didn't specify any exact issue. There are only two boolean values, True or False. A statement can either be true, or it can be false. In Python, we test with == (Whereas = is assignment). If you go into IDLE and type 5 == 5, you're testing whether or not 5 is equal to 5, which it of course is, so the console will return True. If you type 4 == 5, it will return False, because 4 is not equal to 5. You can use boolean logic and conditional statements to test whether a condition is True or False, and run various procedures depending on the outcome. This all goes back to the birth of computer science. 0 is Off, or False, and 1 is On, or True. Binary itself is nothing more than a series of On or Off switches.
4th Feb 2017, 7:41 AM
Aldrich
Aldrich - avatar