Data Structure in Python
Data Structure in Python
2
Sequences
• Sequences
– Series of items that are often related
– Strings are sequences in Python
– A sequence is returned by the range function
3
Example of Sequences
C[0] -45 C[-12]
C[1] 6 C[-11]
Name sequence C[2] 0 C[-10]
(C)
C[3] 72 C[-9]
C[4] 34 C[-8]
C[5] 39 C[-7]
C[6] 98 C[-6]
C[7] -1345 C[-5]
C[8] 939 C[-4]
Position number of
C[9] 10 C[-3]
the element within
sequence C C[10] 40 C[-2]
C[11] 33 C[-1]
4
Sequences (cont'd)
• Elements
– The individual items in each sequence
• Referred to by subscripts
• Obtain one by using sequenceName[ subscript ]
– The subscript of the first element is 0
– The subscript of the last element can be -1
5
Creating Sequences – String
• Strings
– Use quotes
• string1 = "hello"
– Empty string
• string2 = ""
6
Creating Sequences – List
• Lists
– Use brackets
– Separate multiple items with a comma
• list1 = [1, 2, 3, 4]
– Empty list
• list2 = []
– Long List
• S=[0,1,2,3,
4,5,6,7]
– Nested List
• x=[[1,2],[3,4],[5,6]]
• Length of the list
– len (list1)
7
• WAP for declaring a list containing alphabets
of “hello world” and find how many vowels
are there
a=['h','e','l','l','o','','w','o','r','l','d’]
c=0
for x in range(0,len(a)):
if (a[x] in [‘a’,’e’,'i','o','u']):
c=c+1
print(c)
11
Comparing lists
• L1=[1,2,3]
• L2=[1,2,3]
• L3=[2,3,4]
• Print(l1==l2)
• Print(l2==l3)
• T1=[1,2,3]
• T2=[4,5]
• T1.extend(T2)
• T1.extend(6,7)
Chaitali Choudhary, BIT Durg
Insert Method
• T1=[1,4,5]
• T2=[2,3]
• T1.insert(1,T2)
x = fruits.count("cherry")
print(x)
>>> x = (3, 2, 1)
>>> x.sort()
Traceback:AttributeError: 'tuple' object has no
attribute 'sort’
>>> x.append(5)
Traceback:AttributeError: 'tuple' object has no
attribute 'append’
>>> x.reverse()
Traceback:AttributeError: 'tuple' object has no
attribute 'reverse’
>>>
A Tale of Two Sequences
>>> l = list()
>>> dir(l)[
'append', 'count', 'extend', 'index', 'insert',
'pop', 'remove', 'reverse', 'sort']
>>> t = tuple()
>>> dir(t)
['count', 'index']
Tuples are more efficient
• Since Python does not have to build tuple
structures to be modifiable, they are simpler
and more efficient in terms of memory use
and performance than lists
• So in our program when we are making
"temporary variables" we prefer tuples over
lists.
Tuples and Assignment
• D={}
• I am declaring a object of class dictionary
• L=list(D)
• I created an object of class list
• L=[]
• S=‘’
• Dictionary
– A “bag” of values, each with its own label
Dictionaries
tissue
calculator
perfume
money
candy
http://en.wikipedia.org/wiki/Associative_array
Dictionaries
• Dictionaries are Python’s most powerful data
collection
• Dictionaries allow us to do fast database-like
operations in Python
• Dictionaries have different names in different
languages
– Associative Arrays - Perl / Php
– Properties or Map or HashMap - Java
– Property Bag - C# / .Net
http://en.wikipedia.org/wiki/Associative_array
Dictionaries