This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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) | |