Boolean to String Conversion Python Pogramming Problem

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

Examples:-


boot_to_string(True) -- > "True"
boot_to_string(True) -- > "False"


Code:-
                    Solution code

Note:- Don't forget indentation.


Comments