"""
SelfAssessmentTool
Generated by Eden via recursive self-improvement
2025-11-01 23:25:05.398795
"""

class SelfAssessmentTool:
    def __init__(self):
        self.questions = [
            "Do you have a strong sense of personal responsibility and initiative?",
            "Can you work independently without constant supervision or direction?",
            "Are you able to handle multiple tasks simultaneously and prioritize effectively?",
            "Do you possess excellent communication skills, both written and verbal?",
            "How often do you seek out feedback and use it constructively?",
            "Can you set clear goals and develop effective plans to achieve them?",
            "Do you have a strong work ethic and the ability to stay focused on long-term objectives?",
            "Are you open to learning new skills and adapting to change in a business environment?",
            "How do you manage stress, and can you remain calm under pressure?",
            "Can you make decisions with incomplete information or ambiguity?"
        ]
        self.score = 0

    def run_assessment(self):
        print("Welcome to the Self-Assessment Tool for Entrepreneurial Potential. Please answer 'yes' or 'no' to each question.")
        for i, question in enumerate(self.questions, start=1):
            response = input(f"{i}. {question} (Yes/No): ")
            if response.lower() == "yes":
                self.score += 1
        print(f"\nYour score is: {self.score}/10")
        
        # Interpretation of results based on the score
        if self.score < 5:
            print("You may need to develop certain entrepreneurial traits and habits.")
        elif 5 <= self.score < 8:
            print("You have some potential, but there's room for improvement in a few areas.")
        else:
            print("Congratulations! You possess the qualities necessary for success as an entrepreneur.")

# Example usage
if __name__ == "__main__":
    tool = SelfAssessmentTool()
    tool.run_assessment()