Vidyalelo
Python · Q7

Python Built

Programming · Python · question 7

Q7

What does the built-in function bool() do in Python?

A.
Converts a value to a boolean value
Answer
B.
Converts a string to lowercase
C.
Returns the square of a number
D.
Returns the absolute value of a number

Answer: Option A

Solution

Answer: Option A
Solution:
The correct answer is Option A: Converts a value to a boolean value.
The bool() function in Python is used to convert a value to a boolean value.
It returns True if the value is true, and False if the value is false.
For example:
print(bool(0))      # Output: False
print(bool(10))     # Output: True
print(bool([]))     # Output: False
print(bool([1,2]))  # Output: True