DEV Community

Discussion on: Daily Challenge #310 - Boolean to String Conversion

Collapse
 
peter279k profile image
peter279k

Python:

def boolean_to_string(b):
    return str(b)
Enter fullscreen mode Exit fullscreen mode