EBK STARTING OUT WITH PYTHON
EBK STARTING OUT WITH PYTHON
4th Edition
ISBN: 9780134484693
Author: GADDIS
Publisher: PEARSON CUSTOM PUB.(CONSIGNMENT)
Expert Solution & Answer
Book Icon
Chapter 7.5, Problem 18CP
  1. a.

Explanation of Solution

List method “index()”:

  • • “index()” method in Python finds an element in the list and outputs the element’s index.
  • • This method is useful in finding the position of the given element in the list.
  • • The “index()” method takes an element as an input and searches the list for that element appearance and outputs its position.
  • • If more than one occurrence of the element is present in the list, then the method outputs the lowest index.
  • • If the element is not present in the list, then this method raises a “ValueError” exception.

Syntax:

In Python, “index()” has the following syntax,

element_index = List_name.index(element)

Explanation:

In the above code,

  • • The variable “element_index” stores the return value from the “insert()” method.
  • • The variable “List_name” represents the name of the list.
  • • The variable “element” indicates the element that is going to be searched in the list.

Example program:

Consider the following example that demonstrates the “index()” method...

  1. b.

Explanation of Solution

List method “insert()”:

  • • The “insert()” method in Python adds an element to the list.
  • • This method places an element in the list at a given index.
  • • This method takes an element and its position as input parameters and places the given element at the indicated position.
  • • When the element is inserted in the list, the list size is increased to hold the given element.
  • • The element at the current index and the elements following it are moved by one place to the list end.
  • • This method never throws an exception even if the index is not a valid value.
  • • If the index value that is greater than the list size is specified as element’s position, then this method inserts the element at the list end.
  • • If the index value is negative and it indicates an invalid position, then this method places the element at the list beginning.

Syntax:

In Python, “insert()” has the following syntax,

List_name.insert(element_index, element)

Explanation:

In the above code,

  • • The variable “List_name” represents the name of the list.
  • • The variable “element_index” indicates the position where the “element” to be inserted in the list.
  • • The variable “element” indicates the element that is going to be inserted in the list.

Example program:

Consider the following example that demonstrates the “insert()” method...

  1. c.

Explanation of Solution

List method “sort()”:

  • • “sort()” method sorts the list elements.
  • • This method arranges the elements in the list in the ascending order.
  • • So that the elements in the list are arranged from lower to higher values.
  • • This method does not receive any input and does not return a value.

Syntax:

In Python, “sort()” has the following syntax,

List_name.sort()

Explanation:

In the above code,

  • • The variable “List_name” represents the list name that is to be sorted.

Example program:

Consider the following example that demonstrates the “sort()” method.

#Function definition

def main():

         #Create a list to store the names

         mynames_list = ['John', 'Tom', 'David', 'Kim']

         #Print message to the user

       ;&#x...

  1. d.

Explanation of Solution

List method “reverse()”:

  • • “reverse()” method reverses the list elements.
  • • This method changes the elements’ orders in the list.
  • • So that the list contains the elements in reverse order.
  • • This method does not obtain any input and does not output a value.

Syntax:

In Python, “reverse()” has the following syntax,

List_name.reverse()

Explanation:

In the above code,

  • • The variable “List_name” represents the list name that is to be reversed.

Example program:

Consider the following example that demonstrates the “reverse()” method.

#Function definition

def main():

         #Create a list to store the numbers

         mynumbers_list = [1, 15, 11, 21, 12]

         #Print message to the user

         print('The numbers list before r...

Blurred answer
Students have asked these similar questions
1. Draw flow charts for each of the following;a) A system that reads three numbers and prints the value of the largest number.b) A system reads an employee name (NAME), overtime hours worked (OVERTIME), hours absent(ABSENT) and determines the bonus payment (PAYMENT).
Scenario You work for a small company that exports artisan chocolate. Although you measure your products in kilograms, you often get orders in both pounds and ounces. You have decided that rather than have to look up conversions all the time, you could use Python code to take inputs to make conversions between the different units of measurement. You will write three blocks of code. The first will convert kilograms to pounds and ounces. The second will convert pounds to kilograms and ounces. The third will convert ounces to kilograms and pounds. The conversions are as follows: 1 kilogram = 35.274 ounces 1 kilogram = 2.20462 pounds 1 pound = 0.453592 kilograms 1 pound = 16 ounces 1 ounce = 0.0283 kilograms 1 ounce = 0.0625 pounds For the purposes of this activity the template for a function has been provided. You have not yet covered functions in the course, but they are a way of reusing code. Like a Python script, a function can have zero or more parameters. In the code window you…
make a screen capture showing the StegExpose results

Chapter 7 Solutions

EBK STARTING OUT WITH PYTHON

Ch. 7.3 - Prob. 11CPCh. 7.3 - Prob. 12CPCh. 7.3 - Prob. 13CPCh. 7.4 - What will the following code display? names =...Ch. 7.5 - Prob. 15CPCh. 7.5 - Prob. 16CPCh. 7.5 - Prob. 17CPCh. 7.5 - Prob. 18CPCh. 7.8 - Prob. 19CPCh. 7.8 - Prob. 20CPCh. 7.8 - Write a set of nested loops that display the...Ch. 7.9 - Prob. 22CPCh. 7.9 - Prob. 23CPCh. 7.9 - Prob. 24CPCh. 7.9 - Prob. 25CPCh. 7.10 - Prob. 26CPCh. 7.10 - Prob. 27CPCh. 7.10 - Prob. 28CPCh. 7.10 - Prob. 29CPCh. 7.10 - Prob. 30CPCh. 7.10 - To create a bar chart with the bar function, what...Ch. 7.10 - Assume the following statement calls the bar...Ch. 7.10 - Prob. 33CPCh. 7 - This term refers to an individual item in a list....Ch. 7 - This is a number that identifies an item in a...Ch. 7 - Prob. 3MCCh. 7 - This is the last index in a list. a. 1 b. 99 c. 0...Ch. 7 - This will happen if you try to use an index that...Ch. 7 - This function returns the length of a list. a....Ch. 7 - When the operator's left operand is a list and...Ch. 7 - This list method adds an item to the end of an...Ch. 7 - This removes an item at a specific index in a...Ch. 7 - Prob. 10MCCh. 7 - If you call the index method to locate an item in...Ch. 7 - Prob. 12MCCh. 7 - This file object method returns a list containing...Ch. 7 - Which of the following statement creates a tuple?...Ch. 7 - Prob. 1TFCh. 7 - Prob. 2TFCh. 7 - Prob. 3TFCh. 7 - Prob. 4TFCh. 7 - A file object's writelines method automatically...Ch. 7 - You can use the + operator to concatenate two...Ch. 7 - Prob. 7TFCh. 7 - You can remove an element from a tuple by calling...Ch. 7 - Prob. 1SACh. 7 - Prob. 2SACh. 7 - What will the following code display? values = [2,...Ch. 7 - Prob. 4SACh. 7 - Prob. 5SACh. 7 - Prob. 6SACh. 7 - Prob. 1AWCh. 7 - Prob. 2AWCh. 7 - Prob. 3AWCh. 7 - Prob. 4AWCh. 7 - Write a function that accepts a list as an...Ch. 7 - Prob. 6AWCh. 7 - Prob. 7AWCh. 7 - Prob. 8AWCh. 7 - Total Sales Design a program that asks the user to...Ch. 7 - Prob. 2PECh. 7 - Rainfall Statistics Design a program that lets the...Ch. 7 - Prob. 4PECh. 7 - Prob. 5PECh. 7 - Larger Than n In a program, write a function that...Ch. 7 - Drivers License Exam The local driver s license...Ch. 7 - Name Search If you have downloaded the source code...Ch. 7 - Prob. 9PECh. 7 - World Series Champions If you have downloaded the...Ch. 7 - Prob. 11PECh. 7 - Prob. 12PECh. 7 - Magic 8 Ball Write a program that simulates a...Ch. 7 - Expense Pie Chart Create a text file that contains...Ch. 7 - 1994 Weekly Gas Graph In the student sample...
Knowledge Booster
Background pattern image
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
Text book image
C++ for Engineers and Scientists
Computer Science
ISBN:9781133187844
Author:Bronson, Gary J.
Publisher:Course Technology Ptr
Text book image
Programming Logic & Design Comprehensive
Computer Science
ISBN:9781337669405
Author:FARRELL
Publisher:Cengage
Text book image
C++ Programming: From Problem Analysis to Program...
Computer Science
ISBN:9781337102087
Author:D. S. Malik
Publisher:Cengage Learning
Text book image
Systems Architecture
Computer Science
ISBN:9781305080195
Author:Stephen D. Burd
Publisher:Cengage Learning
Text book image
Programming with Microsoft Visual Basic 2017
Computer Science
ISBN:9781337102124
Author:Diane Zak
Publisher:Cengage Learning
Text book image
Microsoft Visual C#
Computer Science
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Cengage Learning,