Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

File: usePythonList.py Author: Derrf Seitz This program exercises Python built - in lists. # # Replace with your name.

"""
File: usePythonList.py
Author: Derrf Seitz
This program exercises Python built-in lists.
"""
#
# Replace with your name.
# Replace any "" comments with your own code statement(s)
# to accomplish the specified task.
# DO NOT CHANGE ANY OTHER CODE.
# Here is your starting list:
myList =[1,2,3,4,5,6,7,8,9,10,11,12]
# Print the list:
print("myList:")
print(myList)
# Part 1:
# Print the items at indexes 0,6, and 11:
print()
print("Items at indexes 0,6, and 11:")
print(myList[0],myList[6],myList[11])
# Part 2:
# Use the len() function to print the number of items in the list:
print()
print("Length of list:")
print(len(myList))
# Part 3:
# Use the append() method to add the number 7 to the end of the list:
print()
print("Using append() to add the number 7 to the end of the list:")
myList.append(7)
print(myList)
# Print the number of items in the list:
print()
print("Length of list:")
print(len(myList))
# Part 4:
# Use the count() method to print the number of times
# the number 7 occurs in the list:
print()
print("Using count() to find the number of times 7 occurs in the list:")
print(myList.count(7))
# Make sure your code prints your result.
# Part 5:
# Use the pop() method to remove the last item from the list:
# The last item is the one at index len(myList)-1.
print()
print("Using pop() to remove the last item from the list:")
myList.pop()
print(myList)
# Part 6:
# Use the remove() method to remove the number 7 from the list:
# This will remove the first (and only)7 it finds.
print()
print("Using remove() to remove the number 7 from the list:")
myList.remove(7)
print(myList)
# Part 7:
# Use the insert() method to insert the number 7 back in the list:
# Insert it where it is supposed to go, which is at index 6.
print()
print("Using insert() to insert the number 7 back in the list:")
myList.insert(6,7)
print(myList)
# Part 8:
# Use the index() method to find the index of the number 7 in the list:
# This will be for the first (and only)7 it finds.
print()
print("Using index() to find the index of the number 7 in the list:")
print(myList.index(7))
# Make sure your code prints your result.
# Part 9:
# Use the min() function to find the smallest item in the list:
print()
print("Using min() to find the smallest item in the list:")
print(min(myList))
# Make sure your code prints your result.
# Part 10:
# Use the max() function to find the largest item in the list:
print()
print("Using max() to find the largest item in the list:")
print(max(myList))
# Make sure your code prints your result.
# Part 11:
# Use the "in" operation to determine whether the number 7 is in the list:
print()
print("Using \"in\" to determine whether the number 7 is in the list:")
print(7 in myList)
# Make sure your code prints your result.
# Part 12:
# Use the "in" operation to determine whether the number 13 is in the list:
print()
print("Using \"in\" to determine whether the number 13 is in the list:")
print(13 in myList)
# Make sure your code prints your result.
# Part 13:
# Use the following kind of "for" loop
for x in myList:
to print each item in the list on a separate line:
print()
print("Each item in list on a separate line:")
for x in myList:
print(x)
# Make sure your code prints your result.
# Part 14:
# Use a "for" loop to add 100 to each item in the list:
# Your "for" statement should be:
for i in range(len(myList)):
# to reference the corresponding list item.
#
# NOTE: The following code will NOT work here.
# for x in myList:
# x +=100
# The reason is because numbers are immutable and each
# list entry itself is not changed.
# Only the x references are changed.
#
print()
print("Add 100 to each item in the list:")
for i in range(len(myList)):
myList[i]+=100
print(myList)
# Part 15:
# Use a "for" loop to subtract 50 from each item in the list:
print()
print("Subtract 50 from each item in the list:")
for i in range(len(myList)):
myList[i]-50
print(myList)
# Part 16:
# Use the reverse() method to reverse the items in the list:
print()
print("Using reverse() to reverse the items in the list:")
#
print(myList)
# Part 17:
# Use the sort() method to sort the items in the list:
# The items are to be sorted back into their original ascending order.
print()
print("Using sort() to sort the items in the list:")
#
print(myList)
# Use the copy() method to create a shallow copy of the list:
# Name your copy copyList.
# Shallow copies can lead to problems when the items are mutable.
# For our list, its number items are immutable (not mutable).
print()
print("Using copy() to create a shallow copy of the list:")
copyList = myList.copy()
print(copyList)
# Part 18:
# Use the clear() method to remove all the items from myList:
print()
print("Using clear() to remove all

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image_2

Step: 3

blur-text-image_3

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Systems Introduction To Databases And Data Warehouses

Authors: Nenad Jukic, Susan Vrbsky, Svetlozar Nestorov

1st Edition

1943153191, 978-1943153190

More Books

Students also viewed these Databases questions

Question

describe the core concepts of patient- and family-centered care

Answered: 1 week ago

Question

=+3. Which factors do influence the procurement management?

Answered: 1 week ago

Question

=+1. Describe the product range in the press sector!

Answered: 1 week ago