---------------------------------------------------------------------- This is the API documentation for the gdtest_sec_tutorials 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 topic. Examples -------- >>> learn("python") 'Learned about python' practice(exercise: int) -> bool Practice a specific exercise. Parameters ---------- exercise : int The exercise number to practice. Returns ------- bool True if the exercise was completed successfully. Examples -------- >>> practice(1) True