Beginner Python
Q16 / 101

What is the output of: bool(0)?

Correct! Well done.

Incorrect.

The correct answer is C) False

C

Correct Answer

False

Explanation

In Python, 0, empty strings, empty lists, empty dicts, and None are all falsy. bool(0) returns False.

Progress
16/101