Managing exceptions in Python

From Computer Science Wiki
Revision as of 11:25, 10 March 2016 by Bmackenty (talk | contribs)

Introduction[edit]

The list type is a container that holds a number of other objects, in a given order. The list type implements the sequence protocol, and also allows you to add and remove objects from the sequence.[1]

Lists are a primitive data type, very, very helpful for storing and changing data.

Example of a function[edit]

# creating a list is very easy. See below. 

list_that_is_empty = []
list_of_computer_parts = ['mouse', 'keyboard', 'CPU', 'display']
list_of_foods = ['kimchi', 'kielbasa', 'noodles', 'rice', 'pierogi']
list_of_students =['joe','sally','frank']
list_of_rooms = ['214a', '214b','212','211','210','209']

# here are the available methods available to a list: 

# list.append(x)
# Add an item to the end of the list; 

# list.extend(L)
# Extend the list by appending all the items in the given list; equivalent to a[len(a):] = L.

# list.insert(i, x)
# Insert an item at a given position. The first argument is the index of the element before which to insert, so a.insert(0, x) inserts at the front of the list, and a.insert(len(a), x) is equivalent to a.append(x).

# list.remove(x)
# Remove the first item from the list whose value is x. It is an error if there is no such item.

# list.pop([i])
# Remove the item at the given position in the list, and return it. If no index is specified, a.pop() removes and returns the last item in the list. (The square brackets around the i in the method signature denote that the parameter is optional, not that you should type square brackets at that position. You will see this notation frequently in the Python Library Reference.)

# list.index(x)
# Return the index in the list of the first item whose value is x. It is an error if there is no such item.

# list.count(x)
# Return the number of times x appears in the list.

# list.sort(cmp=None, key=None, reverse=False)
# Sort the items of the list in place (the arguments can be used for sort customization, see sorted() for their explanation).

# list.reverse()
# Reverse the elements of the list, in place.

This example was swiped from the official Python documentation which you should read. [2]

References[edit]