What does the built-in function bool() do in Python?
A. Converts a value to a boolean value
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 (By Examveda Team)
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

Join The Discussion