← Back to challenges

Boolean to String Conversion

PythonMediumbit_operationsconditionslogicstrings

Instructions

Create a function that takes a boolean variable flag and returns it as a string.

Examples

bool_to_string(True) ➞ "True"

bool_to_string(False) ➞ "False"
python3
Loading editor…
to run
Walks through the solution with reasoning and edge cases.