0% found this document useful (0 votes)
31 views30 pages

Fallsem2023-24 Icse101e

The document discusses lists in Python including how to create, access, update, and perform operations on list elements. It covers list methods like append, insert, pop, sort, etc. and provides examples of list comprehensions and using lists for matrix representations.

Uploaded by

Diya Sicily siju
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views30 pages

Fallsem2023-24 Icse101e

The document discusses lists in Python including how to create, access, update, and perform operations on list elements. It covers list methods like append, insert, pop, sort, etc. and provides examples of list comprehensions and using lists for matrix representations.

Uploaded by

Diya Sicily siju
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 30

List

Introduction
• Contains multiple values that are logically related
• List is a type of mutable sequence in Python
• Each element of a list is assigned a number –
index / position
• Can do indexing, slicing, adding, multiplying, and
checking for membership
• Built-in functions for finding length of a sequence
and for finding its largest and smallest elements
What is a List?
• Most versatile data type in Python
• Comma-separated items can be collected in
square brackets
• Good thing is..
– THE ITEMS IN THE LIST NEED NOT BE OF SAME
TYPE
Lists and Tuples
• Lists and tuples can be thought of as generic
"arrays" with which to hold an arbitrary
number of arbitrary Python objects.
• The items are ordered and accessed via index
offsets, similar to arrays, except that lists and
tuples can store different types of objects.
Cont...
• Lists are enclosed in brackets ( [ ] ) and their
elements and size can be changed.
• Tuples are enclosed in parentheses ( ( ) ) and
cannot be updated.
Tuples can be thought of for now as "read-
only" lists.
Creating a list
• Creating an EMPTY • Creating a list with items
list listname = [item1, item2, ….]
listname = [] Example:
Example: Temp = [100, 99.8, 103, 102]
L1 = [] S = [‘15BIT0001’, ‘Achu’, 99.9]
MyList = []
L2 = [1, 2, 3, 4, 5, 6, 7]
Books = []
Course = [‘Python’, ‘C’, ‘C++’,
‘Java’]
Accessing Values
• Using index or indices
>>>L1 = [1, 2, 3, 4, 5, 6]
>>>print (L1[3]) #indexing
>>>4
>>>print (L1[2:5]) #slicing
>>>[3, 4, 5]
Updating Elements
• Update an element in list using index
>>>L1 = [1, 2, 3, 4, 5, 6]
>>>L1[2] = 111
>>>L1
[1, 2, 111, 4, 5, 6]
Example List
>>> aList = [1, 2, 3, 4]
>>> aList
[1, 2, 3, 4]
>>> aList[0]
1
>>> aList[2:]
[3, 4]
>>> aList[:3]
[1, 2, 3]
>>> aList[1] = 5
>>> aList
[1, 5, 3, 4]
Deleting Elements
• Delete an element in list using index
>>>L1 = [1, 2, 111, 4, 5, 6]
>>>del L1[4]
>>>L1
[1, 2, 111, 4, 6]
Basic Operations in List
• >>> len([1, 2, 3]) # Length
3
• >>> [1, 2, 3] + [4, 5, 6] # Concatenation
[1, 2, 3, 4, 5, 6]

• >>> ['Ni!'] * 4 # Repetition


['Ni!', 'Ni!', 'Ni!', 'Ni!']
Basic Operations in List
• >>> str([1, 2]) + "34" # Same as "[1, 2]" + "34"
'[1, 2]34'

• >>> [1, 2] + list("34")


# Same as [1, 2] + ["3", "4"]
[1, 2, '3', '4‘]
List Comprehensions
>>> res = [c * 4 for c in 'SPAM']
# List comprehensions
>>> res
['SSSS', 'PPPP', 'AAAA', 'MMMM']
• expression is functionally equivalent to a for
loop that builds up a list of results manually
• list comprehensions are simpler to code and
likely faster to run today:
Map
• map built-in function applies a function to
items in a sequence and collects all the results
in a new list
• >>> list(map(abs, [−1, −2, 0, 1, 2]))
• # Map a function across a sequence
[1, 2, 0, 1, 2]
Indexing, Slicing
>>> L = ['spam', 'Spam', 'SPAM!']
>>> L[2] # Offsets start at zero
'SPAM!'
>>> L[−2] # Negative: count from the right
'Spam'
>>> L[1:] # Slicing fetches sections
['Spam', 'SPAM!']
List method calls
>>> L = ['eat', 'more', 'SPAM!']

>>> L.append('please')

# Append method call: add item at end

>>> L

['eat', 'more', 'SPAM!', 'please']

>>> L.sort() # Sort list items ('S' < 'e')

>>> L

['SPAM!', 'eat', 'more', 'please']


Cont...
• Append & Extend
>>> ex=[1,2]
>>> ex
[1, 2]
>>> ex.append(10)
>>> ex
[1, 2, 10]
>>> ex.extend([12,13,14])
>>> ex
[1, 2, 10, 12, 13, 14]
More on Sorting Lists
>>> L = ['abc', 'ABD', 'aBe']

>>> L.sort() # Sort with mixed case

>>> L

['ABD', 'aBe', 'abc']


More Examples on List
• Insert Operation on List
>>> example=[1,2]
>>> example
[1, 2]
>>> example.insert(1,10)
>>> example
[1, 10, 2]
>>> example.insert(3,22)
>>> example
[1, 10, 2, 22]
>>>
Other common list methods
>>> L = [1, 2]

>>> L.extend([3, 4, 5])

# Add many items at end (like in-place +)

>>> L [1, 2, 3, 4, 5]

>>> L.pop()

# Delete and return last item

5
Other common list methods
>>> L [1, 2, 3, 4]

>>> L.reverse()

>>> L [4, 3, 2, 1]
Other common list methods
>>> L = ['spam', 'eggs', 'ham']
>>> L.index('eggs') # Index of an object (search/find)
1
>>> L.insert(1, 'toast') # Insert at position
>>> L
['spam', 'toast', 'eggs', 'ham']
>>> L.remove('eggs') # Delete by value
>>> L
['spam', 'toast', 'ham']
Other common list methods
>>> L.pop(1) # Delete by position 'toast'

>>> L

['spam', 'ham']

>>> L.count('spam') # Number of occurrences 1

1
Other common list methods

>>> L = ['spam', 'eggs', 'ham', 'toast']

>>> del L[0] # Delete one item

>>> L ['eggs', 'ham', 'toast']

>>> del L[1:] # Delete an entire section

>>> L # Same as L[1:] = []

['eggs‘]
Strings and Lists
>>> 'SPAM'.join(['eggs', 'sausage', 'ham', 'toast'])
'eggsSPAMsausageSPAMhamSPAMtoast‘
# uses ‘SPAM’ for joining elements of list
>>> line = 'aaa bbb ccc'
>>> cols = line.split()
>>> cols
['aaa', 'bbb', 'ccc']
Matrixes
• a basic 3 × 3 two-dimensional list-based array:
>>> matrix = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]
• With one index, you get an entire row (really, a
nested sublist), and with two, you get an item
within the row:
>>> matrix[1]
[4, 5, 6]
Matrixes
>>> matrix[1][1]
5
>>> matrix[2][0]
7
>>> matrix = [[1, 2, 3],
[4, 5, 6],
[7, 8, 9]]
>>> matrix[1][1]
5
Matrix Addition
X = [[1,2,3], [4 ,5,6], [7 ,8,9]]

Y = [[9,18,7], [6,5,4], [3,12,1]]

result = [[0,0,0], [0,0,0], [0,0,0]]

# iterate through rows


for i in range(len(X)):
# iterate through columns
for j in range(len(X[0])):
result[i][j] = X[i][j] + Y[i][j]

for r in result:
print(r)
Cont
• Searching a List
ex=[12,13,14]
target=13
if target in ex:
print(ex.index(target))
else:
print(-1)
Cont...
• Aliasing
>>> ex1
[1, 12, 13, 14]
>>> ex
[1, 12, 13, 14]
>>> ex1=ex
>>> ex1
[1, 12, 13, 14]
>>> ex[1]=123
>>> ex
[1, 123, 13, 14]
>>> ex1
[1, 123, 13, 14]

You might also like