Write a Python program as below: Create a list: [1, 3, 5, 7, 9] Carryout the following on the list created: 1. Print length of t
Isabella_Charlotte
Question
Write a Python program as below: Create a list: [1, 3, 5, 7, 9] Carryout the following on the list created: 1. Print length of the list. Append an item to the list. Print the list. Insert an item into the list. Print the list. Find the index of an item in the list. Print the item and its index. If the item is no in the list, print item is not in the list. Delete an item with specified index. Print the list. Remove an item from the list. Print the list. Find the min of the list items. Print min. Find the max of the list items. Print max.
Details
Purchase An Answer Below