"""
SelfKnowledgeAssessment
Generated by Eden via recursive self-improvement
2025-11-02 07:41:20.365333
"""

class SelfKnowledgeAssessment:
    def __init__(self):
        self.questions = [
            "What is your current level of expertise in business management?",
            "Do you have experience with market research methods?",
            "How familiar are you with financial planning and budgeting?",
            "Can you identify the strengths and weaknesses of your business idea?",
            "How do you handle stress and pressure in a business environment?"
        ]
        self.recommendations = {
            'low': ["Consider taking courses or workshops to improve your skills.", "Look for mentorship opportunities."],
            'medium': ["Continue building on your existing knowledge and experience.", "Seek out networking events to enhance your connections."],
            'high': ["Stay informed about industry trends and advancements.", "Explore new business areas based on your strengths."]
        }

    def run_assessment(self):
        print("Welcome to the Self-Knowledge Assessment.")
        for i, question in enumerate(self.questions):
            print(f"Question {i+1}: {question}")
            answer = input()
            self.evaluate_answer(answer)
        
    def evaluate_answer(self, answer):
        if "low" in answer.lower():
            return 'low'
        elif "medium" in answer.lower() or "moderate" in answer.lower():
            return 'medium'
        else:
            return 'high'

    def provide_recommendations(self, level):
        print(f"\nYour current knowledge level is: {level}")
        print("Here are some recommendations for you:")
        for recommendation in self.recommendations[level]:
            print(recommendation)

if __name__ == "__main__":
    assessment = SelfKnowledgeAssessment()
    assessment.run_assessment()
    assessment.provide_recommendations(assessment.evaluate_answer(input()))