---------------------------------------------------------------------- This is the API documentation for the gdtest_sec_deep library. ---------------------------------------------------------------------- ## Functions Public functions learn(topic: str) -> str Learn about a specific topic. Parameters ---------- topic : str The topic to learn about. Returns ------- str A summary of the learned topic. Examples -------- >>> learn("python") 'Learned: python' test_knowledge(quiz: str) -> bool Test knowledge on a given quiz topic. Parameters ---------- quiz : str The quiz topic to test. Returns ------- bool True if the quiz was passed. Examples -------- >>> test_knowledge("basics") True