"""
SelfKnowledgeAssessmentTool
Generated by Eden via recursive self-improvement
2025-11-01 18:44:54.197737
"""

class SelfKnowledgeAssessmentTool:
    def __init__(self):
        self.questions = [
            "How well do you know your strengths and weaknesses?",
            "Can you describe your business vision in detail?",
            "Do you regularly seek feedback from others to improve yourself?",
            "How often do you engage in personal development activities?",
            "What are the key lessons you've learned from previous failures or setbacks?",
            "Do you have a clear understanding of your core values and how they relate to your business goals?"
        ]
        
    def ask_questions(self):
        for question in self.questions:
            print(question)
            answer = input("Please enter your response: ")
            yield question, answer

    def summarize_results(self):
        results = {}
        for question, answer in self.ask_questions():
            results[question] = answer
        return results

if __name__ == "__main__":
    tool = SelfKnowledgeAssessmentTool()
    results = tool.summarize_results()
    print("Self Knowledge Assessment Summary:")
    for q, a in results.items():
        print(f"{q}: {a}")