Search
- Filter Results
- Location
- Classification
- Include attachments
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/08%3A__Strings/8.01%3A_String_OperationsThis page outlines learning objectives for string manipulation in Python, including the use of logical and membership operators for string comparison. It introduces string methods such as lower() and ...This page outlines learning objectives for string manipulation in Python, including the use of logical and membership operators for string comparison. It introduces string methods such as lower() and upper() for case conversion and includes examples and practical exercises for application. Overall, it provides foundational knowledge of string operations in Python.
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/02%3A_Expressions/2.00%3A_IntroductionThis page explains the structure of a computer program, focusing on sequential statements and expressions used in Python to compute values. It covers simple expressions, handling of numbers and string...This page explains the structure of a computer program, focusing on sequential statements and expressions used in Python to compute values. It covers simple expressions, handling of numbers and strings, experimentation with the Python shell, details on integers and floating-point numbers, the math module, and offers readability tips for coding.
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/01%3A_Statements/1.05%3A_Number_BasicsThis page outlines learning objectives for arithmetic operations and numeric data types in Python, covering basic formats like integers and floating-point numbers, and introducing arithmetic operators...This page outlines learning objectives for arithmetic operations and numeric data types in Python, covering basic formats like integers and floating-point numbers, and introducing arithmetic operators along with operator precedence. It provides checkpoints, practice questions, and programming exercises to reinforce understanding of these concepts.
- https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/02%3A_Expressions/2.03%3A_Mixed_Data_TypesThis page outlines learning objectives for combining data types in programming, focusing on integers, floats, and strings. It explains that operations between integers and floats produce float results...This page outlines learning objectives for combining data types in programming, focusing on integers, floats, and strings. It explains that operations between integers and floats produce float results and emphasizes the necessity of explicit type conversion when interacting with numeric types and strings. The page also discusses using operators for string repetition and provides practical examples to illustrate these concepts, noting potential errors due to incompatible types.