How to Use bool() Function

Using the bool() function in Python is very easy. You just need to pass the value as a parameter and it will convert it into a boolean data type.

Let’s understand better how to convert values into boolean data type with a simple example:

bool() in Python

Python bool() function is used to return or convert a value to a Boolean value i.e., True or False, using the standard truth testing procedure. 

Example

Python3




x = bool(1)
print(x)
y = bool()
print(y)


Output

True
False

Similar Reads

What is the bool() Method in Python?

...

bool() Method Syntax

bool() is a built-in function of Python programming language. It is used to convert any other data type value (string, integer, float, etc) into a boolean data type....

How to Use bool() Function

bool([x])...

More Examples of bool() function

Using the bool() function in Python is very easy. You just need to pass the value as a parameter and it will convert it into a boolean data type....