I\'m new to python.
I want the program to ask
\"is Johnny hungry? True or false?\"
user inputs True then print is
You could just try bool(input("...")) but you would get into trouble if the user doesn't input a bool. You could just wrap it in a try statement.