Python Booleans

Python provides the bool type, which can have two values: True and False (capitalized)
done = False
done = True
Booleans are especially useful with conditional control structures like if statements:
done = True

if done:
# run some code he…


This content originally appeared on flaviocopes.com and was authored by flaviocopes.com

Python provides the bool type, which can have two values: True and False (capitalized)

done = False
done = True

Booleans are especially useful with conditional control structures like if statements:

done = True

if done:
    # run some code here
else:
    # run some other code

When evaluating a value for True or False, if the value is not a bool we have some rules depending on the type we’re checking:

  • numbers are always True unless for the number 0
  • strings are False only when empty
  • lists, tuples, sets, dictionaries are False only when empty

You can check if a value is a boolean in this way:

done = True
type(done) == bool #True

Or using isinstance(), passing 2 arguments: the variable, and the bool class:

done = True
isinstance(done, bool) #True

The global any() function is also very useful when working with booleans, as it returns True if any of the values of the iterable (list, for example) passed as argument are True:

book_1_read = True
book_2_read = False

read_any_book = any([book_1_read, book_2_read])

The global all() function is same, but returns True if all of the values passed to it are True:

ingredients_purchased = True
meal_cooked = False

ready_to_serve = all([ingredients_purchased, meal_cooked])


This content originally appeared on flaviocopes.com and was authored by flaviocopes.com


Print Share Comment Cite Upload Translate Updates
APA

flaviocopes.com | Sciencx (2020-12-04T05:00:00+00:00) Python Booleans. Retrieved from https://www.scien.cx/2020/12/04/python-booleans/

MLA
" » Python Booleans." flaviocopes.com | Sciencx - Friday December 4, 2020, https://www.scien.cx/2020/12/04/python-booleans/
HARVARD
flaviocopes.com | Sciencx Friday December 4, 2020 » Python Booleans., viewed ,<https://www.scien.cx/2020/12/04/python-booleans/>
VANCOUVER
flaviocopes.com | Sciencx - » Python Booleans. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2020/12/04/python-booleans/
CHICAGO
" » Python Booleans." flaviocopes.com | Sciencx - Accessed . https://www.scien.cx/2020/12/04/python-booleans/
IEEE
" » Python Booleans." flaviocopes.com | Sciencx [Online]. Available: https://www.scien.cx/2020/12/04/python-booleans/. [Accessed: ]
rf:citation
» Python Booleans | flaviocopes.com | Sciencx | https://www.scien.cx/2020/12/04/python-booleans/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.