Search
- Filter Results
- Location
- Classification
- Include attachments
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/05%3A_Loops/5.03%3A_Nested_LoopsThis page discusses the implementation and functionality of nested loops, including both while and for loops. It features examples such as printing doctor appointment slots and various practice exerci...This page discusses the implementation and functionality of nested loops, including both while and for loops. It features examples such as printing doctor appointment slots and various practice exercises. The content emphasizes mixing loop types and includes "Try It" exercises designed to help users practice creating specific patterns with nested loops.
- https://eng.libretexts.org/Courses/Arkansas_Tech_University/Engineering_Modeling_and_Analysis_with_Python/09%3A_Dictionaries/9.03%3A_Dictionaries_and_FilesThis page describes a Python program that counts word occurrences in a simplified version of "Romeo and Juliet." It processes the text line by line, splits each line into words, and uses a dictionary ...This page describes a Python program that counts word occurrences in a simplified version of "Romeo and Juliet." It processes the text line by line, splits each line into words, and uses a dictionary to count occurrences. The program utilizes nested loops for processing. The output is an unsorted dictionary of word counts, suggesting further coding is necessary to organize these results for better analysis.
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/09%3A_Lists/9.04%3A_Nested_ListsThis page explains list-of-lists in Python for managing multidimensional data. It outlines key skills such as manipulating nested lists, multi-dimensional indexing, and iterating through lists with ne...This page explains list-of-lists in Python for managing multidimensional data. It outlines key skills such as manipulating nested lists, multi-dimensional indexing, and iterating through lists with nested loops. Examples demonstrate accessing elements in a two-dimensional list and using for loops for iteration. It also includes a practical exercise on matrix multiplication, highlighting the process of calculating individual elements in the product matrix.
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/16%3A_Answer_Key/16.04%3A_Chapter_5This page explores essential programming concepts related to loops, including while loops, for loops, nested loops, and control statements like break/continue. It details how these structures function...This page explores essential programming concepts related to loops, including while loops, for loops, nested loops, and control statements like break/continue. It details how these structures function, their termination conditions, and the impact of initialized variables. With examples like Fibonacci sequences and character counting, it illustrates scenarios affecting loop execution and output. The content underscores the importance of grasping loop mechanics in programming.
- https://eng.libretexts.org/Courses/Oxnard_College/Matlab_and_Octave_Programming_for_STEM_Applications_(Smith)/12%3A_MATLAB_Matrices_(Arrays)/12.06%3A_Matrix_Tables_and_Nested_LoopsTables can be created using MATLAB matrices. Nested loops sometimes access matrix elements.
- https://eng.libretexts.org/Courses/Oxnard_College/Matlab_and_Octave_Programming_for_STEM_Applications_(Smith)/06%3A_Conditionals_Part_1/6.06%3A_Nested_for_Loopsnested loops
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/05%3A_Loops/5.06%3A_Chapter_SummaryThis page discusses loop constructs in programming, including while and for loops, the range() function for integer sequences, and nested loops. It explains control statements like break and continue ...This page discusses loop constructs in programming, including while and for loops, the range() function for integer sequences, and nested loops. It explains control statements like break and continue and the use of an else statement with loops. The chapter provides examples and concludes with a practical exercise to write a program that prints the first N prime numbers.
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/05%3A_LoopsThis page covers the topic of programming loops, detailing introductory concepts, different types of loops (while, for, and nested), and control statements such as break and continue. It also discusse...This page covers the topic of programming loops, detailing introductory concepts, different types of loops (while, for, and nested), and control statements such as break and continue. It also discusses the loop else construct and concludes with a chapter summary. Furthermore, there are mentions of configuration settings and user interface features pertinent to learning paths and notifications.

