Search
- Filter Results
- Location
- Classification
- Include attachments
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/12%3A_Recursion/12.00%3A_IntroductionThis page discusses recursion, a programming technique that simplifies complex solutions by allowing functions to call themselves with varying parameters. It highlights the compactness and efficiency ...This page discusses recursion, a programming technique that simplifies complex solutions by allowing functions to call themselves with varying parameters. It highlights the compactness and efficiency recursion brings to programming, especially in advanced scenarios.
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/03%3A_Objects/3.01%3A_Strings_RevisitedThis page covers string manipulation in Python, focusing on extracting characters using indexes from both the left and right. It introduces Unicode for diverse character representation and explains es...This page covers string manipulation in Python, focusing on extracting characters using indexes from both the left and right. It introduces Unicode for diverse character representation and explains escape sequences for including special characters. Additionally, it offers exercises to enhance understanding, featuring functions like ord() and chr() for character encoding.
- https://eng.libretexts.org/Bookshelves/Data_Science/Principles_of_Data_Science_(OpenStax)/06%3A_Decision-Making_Using_Machine_Learning_BasicsThis page presents an introductory chapter on machine learning, discussing its definition, classification methods, regression analysis, and decision trees. It features key terms, a group project, chap...This page presents an introductory chapter on machine learning, discussing its definition, classification methods, regression analysis, and decision trees. It features key terms, a group project, chapter review, critical thinking prompts, quantitative problems, and references for further study.
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/12%3A_Recursion/12.01%3A_Recursion_BasicsThis page explains recursion as a problem-solving technique that simplifies complex problems by addressing simpler variants. It highlights applications like the Tower of Hanoi, detailing the recursive...This page explains recursion as a problem-solving technique that simplifies complex problems by addressing simpler variants. It highlights applications like the Tower of Hanoi, detailing the recursive method for moving rings. Engaging questions help readers comprehend the steps needed for two, three, and four rings. The primary focus is on understanding how recursion aids in systematically constructing solutions.