Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Learn Python bool() Function | Boolean Type
Python Data Types
Section 2. Chapter 2
single

single

bookPython bool() Function

Swipe to show menu

In Python there is bool() function that converts variables of any type into a variable of boolean type (True or False). Let's look at an example for better understanding.

Input:
zero = 0
print(bool(zero))

Output:
False
Input:
one = 1
print(bool(one))

Output:
True
Input:
number = 10
print(bool(number))

Output:
True

Any digit other than zero is True.

Input:
x = None
print(bool(x))

Output:
False
Task

Swipe to start coding

You have three numbers of different numeric types, you have to return a boolean object from each of one.

Solution

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 2. Chapter 2
single

single

Ask AI

expand

Ask AI

ChatGPT

Ask anything or try one of the suggested questions to begin our chat

some-alt