Search
- Filter Results
- Location
- Classification
- Include attachments
- https://eng.libretexts.org/Bookshelves/Computer_Science/Applied_Programming/Think_Complexity%3A_Exploring_Complexity_Science_with_Python_(Downey)/00%3A_Front_Matter/04%3A_0%3A_Preface/1.01%3A_Who_is_this_book_forThe examples and supporting code for this book are in Python. If you are not already familiar with Python, you might want to start with Think Python, which is appropriate for people who have never pro...The examples and supporting code for this book are in Python. If you are not already familiar with Python, you might want to start with Think Python, which is appropriate for people who have never programmed before. If you have programming experience in another language, there are many good Python books to choose from, as well as online resources. If you are familiar with these libraries already, that’s great, but I will also explain them when they appear.
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/08%3A__Strings/8.04%3A_String_FormattingThis page provides an overview of string formatting in Python, focusing on the `format()` method for generating formatted strings. It explores template usage with replacement fields, named and numbere...This page provides an overview of string formatting in Python, focusing on the `format()` method for generating formatted strings. It explores template usage with replacement fields, named and numbered arguments, and techniques for aligning outputs. The text includes practical examples for creating personalized messages, formatting tables, and managing numerical formatting with precision and width. It concludes with exercises and challenges to reinforce understanding of the concepts discussed.
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/01%3A_Statements/1.03%3A_VariablesThis page explains the basics of variable assignment and usage in Python, highlighting the assignment operator and naming conventions. It advises starting variable names with a letter, avoiding reserv...This page explains the basics of variable assignment and usage in Python, highlighting the assignment operator and naming conventions. It advises starting variable names with a letter, avoiding reserved keywords, and using descriptive names, specifically recommending snake_case for better readability. The text also includes practice questions to help reinforce these concepts.
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/01%3A_Statements/1.00%3A_IntroductionThis page highlights the significance of computers and programming in contemporary life, affecting various sectors such as communication and healthcare. It discusses programming fundamentals, includin...This page highlights the significance of computers and programming in contemporary life, affecting various sectors such as communication and healthcare. It discusses programming fundamentals, including input/output statements, variable assignment, and arithmetic. The chapter also addresses error handling and interpretations, while offering an overview of Python's history and its increasing popularity as a programming language.
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/05%3A_Loops/5.05%3A_Loop_ElseThis page explains the loop else statement, which executes after a loop if it completes without interruption by a break. It demonstrates its application through an example of searching for the number ...This page explains the loop else statement, which executes after a loop if it completes without interruption by a break. It demonstrates its application through an example of searching for the number 10 in a list, conveying different messages based on whether it is found. The section also includes practice problems to enhance understanding, featuring output prediction exercises and a programming task focused on summing numbers less than 10 in a list.
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/16%3A_Answer_Key/16.07%3A_Chapter_8This page covers string operations such as comparisons, slicing, searching, formatting, and splitting/joining. It explains ASCII values for string order, substring extraction, counting, finding method...This page covers string operations such as comparisons, slicing, searching, formatting, and splitting/joining. It explains ASCII values for string order, substring extraction, counting, finding methods, and error handling. The text includes examples for modifying strings and using delimiters in splitting and joining. Overall, it offers a thorough overview of string manipulation in programming.
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/02%3A_ExpressionsThis page is a guide on Python programming, covering an introduction, the Python shell, type conversion, handling mixed data types, floating-point errors, integer division, the math module, and code f...This page is a guide on Python programming, covering an introduction, the Python shell, type conversion, handling mixed data types, floating-point errors, integer division, the math module, and code formatting best practices. It also discusses career opportunities in Python and concludes with a chapter summary.
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/01%3A_Statements/1.09%3A_Chapter_summaryThis page provides an overview of Python programming basics, covering input/output functions, variable assignments, data types, arithmetic operations, and coding practices. It includes practical exerc...This page provides an overview of Python programming basics, covering input/output functions, variable assignments, data types, arithmetic operations, and coding practices. It includes practical exercises such as calculating squares and cubes and creating a mad lib game. The chapter highlights the significance of syntax and proper code structure to guide readers in developing functional programs.
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/01%3A_Statements/1.07%3A_CommentsThis page outlines learning objectives for writing effective comments and docstrings in Python. It emphasizes the purpose and formatting of comments, prioritizing clarity and structure for code readab...This page outlines learning objectives for writing effective comments and docstrings in Python. It emphasizes the purpose and formatting of comments, prioritizing clarity and structure for code readability. Additionally, it discusses the role of docstrings in program documentation, providing guidelines for effective use. It also highlights the importance of separating code sections with blank lines and crafting informative comments.
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/02%3A_Expressions/2.05%3A_Dividing_IntegersThis page explains learning objectives for evaluating expressions using floor division and modulo in Python. It differentiates between true division, yielding floats, and floor division, which provide...This page explains learning objectives for evaluating expressions using floor division and modulo in Python. It differentiates between true division, yielding floats, and floor division, which provides whole number quotients. The modulo operator finds remainders and is applied in unit conversions, like centimeters to meters. The content includes exercises on calculating arrival times and dispensing change at self-checkouts, reinforcing the practical applications of these operations.
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/02%3A_Expressions/2.09%3A_Chapter_SummaryThis page covers essential programming concepts, including interactive expressions, type conversions, string concatenation, and floating-point error handling. It highlights the significance of readabi...This page covers essential programming concepts, including interactive expressions, type conversions, string concatenation, and floating-point error handling. It highlights the significance of readability and presents functions like `abs()` and `int()`. Practical exercises include a bread ingredient calculator and a tip calculator, focusing on user input and accurate output formatting. The chapter reinforces the application of programming skills in real-world scenarios.