Skip to content

Instantly share code, notes, and snippets.

def reverse_inquiry(belief):
return "I am " + "not "*(belief.endswith("enough")) + "enough"
belief = input("Enter the belief or thought that causes you distress or discomfort: ")
reverse_belief = reverse_inquiry(belief)