Python Module 7 AFV Core-Data-Structure
Python Module 7 AFV Core-Data-Structure
.
Core Data
Structures in
Python
What is Data Structure - Agenda
What are data structures?
Why are data structures needed?
Types of data structures in Python
Built-In Data Structures
● Lists
● Tuple
● Sets
● Dictionary
● Frozen Set
data Structure
What is Data
structure?
Data is an important aspect when it comes to programming.
● Sequence
● Containers
● Collection
Output
10
20
30
40
50
List
What is List?
# Initialize list
Lst = [20, 40, 50, 20, 100, 10, 510]
Output
# Display list
[40, 50, 20, 100]
print(Lst[1:5])
Slicing operator
20 40 50 20 100 10 510
-7 -6 -5 -4 -3 -2 -1
Slicing Operator
0 1 2 3
Start:Stop First Index
Method Meaning
extend() Add the elements of a list (or any iterable), to the end of the current list
index() Returns the index of the first element with the specified value
Method Meaning
a=(l,2,3,4,5)
Returns the index of the first
a.index(tuple) a.index(5)
matched item.
4
a=(l,2,3,4,5)
Returns the count of the given
a.count(tuple) a.count(3)
element.
1
len(a)
len(tuple) Returns the length of the tuple
5
Tuple Methods & Functions
Methods/Functions Description Example
del(a)
del(tuple) Deletes the entire tuple.
Tuple
exampl
e
Example for Tuple method
#Counting the number of elements in a tuple
a=(3,2,1,3,4,5) Output: 2
a.count(3)
Lms activity
Set
What IS set?
difference() Returns a set containing the difference between two or more sets
Removes the items in this set that are also included in another,
difference_update()
specified set
Set Methods
Method Meaning
Removes the items in this set that are not present in other,
intersection_update()
specified set(s)
Method Meaning
print(A)
Output Output
{1, 2, 3, 4, 5} {1, 2, 3, 4, 5}
Lms activity
Dictionary
What is Dictionary?
exampl
e
#Program for personal details
P_D = {“Name”:”Karan”, “Age”:24, “City”:”Delhi”, “Height”: 5.8}
print(P_D)
Output
{'Name': 'Karan', 'Age': 24, 'City': 'Delhi', 'Height': 5.8}
Dictionary Methods
Method Meaning
Method Meaning
items() Returns a list containing a tuple for each key value pair
Gives the total length of the dictionary. This would be equal to the
len(dict)
number of items in the dictionary.
Example
mylist = ['Python', 'Java', 'Julia']
x = frozenset(mylist)
Output
frozenset({'Julia', 'Java', 'Python'})
Frozen Set
If you try to add an element to a frozen set, you will get an error.
exampl
# tuple of vowels e
vowels = ('a', 'e', 'i', 'o', 'u')
Output
fSet = frozenset(vowels)
The frozen set is: frozenset({'e', 'i',
print('The frozen set is:', fSet)
print('The empty frozen set is:', 'a', 'o', 'u'})
frozenset()) The empty frozen set is: frozenset()
# copying a frozenset
C = A.copy() # Output: frozenset({1, 2, 3, 4})
print(C)
Output
# union frozenset({1, 2, 3, 4, 5, 6})
print(A.union(B))
Frozen Set Operations
exampl
e
# intersection Output
frozenset({3, 4})
print(A.intersection(B))
# difference Output
print(A.difference(B)) frozenset({1, 2,})
# symmetric_difference
Output
print(A.symmetric_difference(B)) frozenset({1, 2, 5, 6})
Frozen Set Operations
exampl
# Frozensets
e
# initialize A, B and C Output
# issubset() method
A = frozenset([1, 2, 3, 4]) True
print(C.issubset(B))
B = frozenset([3, 4, 5, 6])
C = frozenset([5, 6])
Output
True