Loading [MathJax]/extensions/mml2jax.js
Skip to main content
Library homepage
 

Text Color

Text Size

 

Margin Size

 

Font Type

Enable Dyslexic Font
Engineering LibreTexts

Search

  • Filter Results
  • Location
  • Classification
    • Article type
    • Author
    • Set as Cover Page of Book
    • License
    • Show TOC
    • Transcluded
    • OER program or Publisher
    • Autonumber Section Headings
    • License Version
    • Print CSS
  • Include attachments
Searching in
About 25 results
  • https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/01%3A_Statements/1.04%3A_String_Basics
    This page presents basic string concepts in Python, including defining strings, using the len() function, and string concatenation. It features examples of valid/invalid strings, practice questions, a...This page presents basic string concepts in Python, including defining strings, using the len() function, and string concatenation. It features examples of valid/invalid strings, practice questions, and user input introductions. Additionally, there are two programming exercises focused on calculating name lengths and formatting greetings with variables.
  • https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/03%3A_Objects/3.04%3A_List_Basics
    This page discusses the fundamentals of lists in Python, detailing creation, access, and modification. Lists are defined with square brackets and can hold diverse data types. It covers key concepts li...This page discusses the fundamentals of lists in Python, detailing creation, access, and modification. Lists are defined with square brackets and can hold diverse data types. It covers key concepts like using indexes, the len() function to determine list length, and the dynamic nature of lists. Practice questions are included to reinforce skills in list creation, indexing, and modification.
  • https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/10%3A_Dictionaries/10.03%3A_Dictionary_Operations
    This page discusses Python dictionaries, highlighting their mutability and methods for accessing, modifying, and evaluating items. It explains how to obtain keys, values, and items using functions suc...This page discusses Python dictionaries, highlighting their mutability and methods for accessing, modifying, and evaluating items. It explains how to obtain keys, values, and items using functions such as keys(), values(), and items(). Techniques for adding, updating, and deleting entries are demonstrated, including square bracket notation and the update() method. The section includes practice questions to enhance understanding of dictionary operations.
  • https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/09%3A_Lists/9.03%3A_Common_List_Operations
    This page covers key list operations in Python, detailing the use of built-in functions such as max(), min(), and sum() for finding the largest, smallest, and total values in a list. It explains list ...This page covers key list operations in Python, detailing the use of built-in functions such as max(), min(), and sum() for finding the largest, smallest, and total values in a list. It explains list copying with the copy() method and the effects of modifying original versus copied lists. The section also includes practice questions to enhance comprehension of these concepts.
  • https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/08%3A__Strings/8.05%3A_Splitting_Joining_Strings
    This page outlines learning objectives for Python's string manipulation methods `split()` and `join()`. It explains how `split()` divides strings using a delimiter and provides examples, while `join()...This page outlines learning objectives for Python's string manipulation methods `split()` and `join()`. It explains how `split()` divides strings using a delimiter and provides examples, while `join()` concatenates a list of strings into one. Practical exercises encourage applying these methods, such as printing unique words from a comma-separated input and formatting restaurant orders.
  • https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/07%3A_Modules/7.01%3A_Module_Basics
    This page discusses the goals and techniques for defining and importing Python modules, highlighted with an “area” module example for geometric area calculations. It explains usage in other programs a...This page discusses the goals and techniques for defining and importing Python modules, highlighted with an “area” module example for geometric area calculations. It explains usage in other programs and offers exercises for creating a conversion module for temperature and distance. There's also a task to write a program that combines this conversion module with user input for output results.
  • https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/03%3A_Objects/3.01%3A_Strings_Revisited
    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 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/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/02%3A_Expressions/2.06%3A_The_Math_Module
    This page outlines learning objectives for Python's built-in functions and the math module, highlighting the need for imports when using module functions. It includes examples, such as calculating dis...This page outlines learning objectives for Python's built-in functions and the math module, highlighting the need for imports when using module functions. It includes examples, such as calculating distances and using constants like pi. Practice questions and coding exercises are provided to reinforce understanding, including implementations of the quadratic formula and cylinder formulas.
  • https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/12%3A_Recursion/12.04%3A_More_Math_Recursion
    This page covers the implementation of recursive functions for calculating Fibonacci numbers and the greatest common divisor (GCD) using Euclid's method. It explains the Fibonacci sequence, including ...This page covers the implementation of recursive functions for calculating Fibonacci numbers and the greatest common divisor (GCD) using Euclid's method. It explains the Fibonacci sequence, including a recursive function and example output. The GCD section defines the method and illustrates its recursive calculation with an example. Additionally, the text provides practice questions and encourages writing more recursive functions.
  • https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/07%3A_Modules/7.03%3A_Top-level_Code
    This page discusses Python module behavior, highlighting potential side effects from importing modules and the significance of the `if __name__ == "__main__"` statement. It explains that top-level cod...This page discusses Python module behavior, highlighting potential side effects from importing modules and the significance of the `if __name__ == "__main__"` statement. It explains that top-level code runs upon import, which can lead to unintended consequences, and provides examples to illustrate this. The text emphasizes the importance of using the conditional statement to control execution and prevent code from running prematurely. Exercises are included to reinforce the concepts presented.
  • https://eng.libretexts.org/Bookshelves/Computer_Science/Programming_Languages/Python_Programming_(OpenStax)/05%3A_Loops/5.01%3A_While_Loop
    This page explains Python's while loop, detailing its functionality to repeatedly execute code while a condition is true. It offers examples like generating Fibonacci numbers and counting odd numbers,...This page explains Python's while loop, detailing its functionality to repeatedly execute code while a condition is true. It offers examples like generating Fibonacci numbers and counting odd numbers, alongside checkpoints and exercises to enhance comprehension. Users are encouraged to apply while loops in practical tasks, such as handling user inputs and calculating sums of odd integers within specified ranges.

Support Center

How can we help?