Python (1803) Data Structures
Python (1803) Data Structures
PYTHON UCS1803
Faculty Name: Ankit Verma
LIST,TUPLES,DICTIONARIES
1. Define List with example?
A List is an ordered set of values, where each value is identified by an index.
The Values that make up a list are called its elements or items.
>>> t[:4]
Output:['a', 'b', 'c', 'd']
>>> t[3:]
Output:['d', 'e', 'f']
>>> t[:]
Output : ['a', 'b', 'c', 'd', 'e', 'f']
Example:
>>>a=[1,2,3]
>>>b=a[:]
>>>print b
[1,2,3].
Index can have negative value, it counts backward from the list.
Example:
>>> Srmu_btech_section = ['11', '12','13', '14', '15', '16', '17', '18', '19', 20']
>>>Srmu_btech_section(0) = ‘22’
>>>Srmu_btech_section(-1) = ‘30’
>>>print (Srmu_btech_section)
['22', '12','13', '14', '15', '16', '17', '18', '19', '30']
6. What is Aliasing?
More than one list variable can point to the same data. This is called an alias.
If ‘A’ refers to an object and you assign ‘ B = A’, then both variables refer to the same
object:
>>> A = [1, 2, 3]
>>> B= A
>>> B is A
True
9. Define Tuples?
A tuple is a sequence of values.
The values can be any type, and they are indexed by integers, so in that respect tuples are a
lot like lists. The important difference is that tuples are immutable.
To create a tuple with a single element, you have to include the final comma:
>>> t1 = ('a',)
>>> type(t1)
<type 'tuple'>
One of the unique features of the python language is the ability to have a tuple on the left
hand side of an assignment statement.
This allows you to assign more than one variable at a time when the left hand side is a
sequence.
Example:
Two element in list (which is a sequence ) and assign the first and second elements of the variables
x and y in a single statement.
A function can only return one value, but if the value is a tuple, the effect is the same as
returning multiple values.
Example:
>>> t = divmod(7, 3)
>>> print t
(2, 1)
Or use tuple assignment to store the elements separately:
>>> quot, rem = divmod(7, 3)
>>> print quot
2
>>> print rem
1
Example:
>>> a = [11,22,33,44]
>>> b =[x*2 for x in a]
>>>b
[22,44,66,88]
Immutable data value: A data value which cannot be modified. Assignments to elements
or slices of immutable values causes a runtime error
Mutable data value: A data value which can be modified .The Types of all mutable value
are compound types.List and dictionaries are Mutable; Strings and Tuple are not.
.
5
Tuples Dictionaries
A tuple is a sequence of values. Python dictionary are kind of hash table
The values can be any type, and they are type.
indexed by integers, so in that respect Dictionary work like associative arrays or
tuples are a lot like lists. The important hashes found in perl and consist of key
difference is that tuples are immutable. value pairs.
Dictionary is one of the compound data type like strings, list and tuple. Every element in a
dictionary is the key-value pair.
An empty dictionary without any items is written with just two curly braces, like this: {}.
Example:
>>> a = {}
>>> a["one"] = "Ankit"
>>> a["two"] = "Verma"
>>> print(a)
Output:
{"two": "Verma", "one": "Ankit"}
A dictionary can be Created by specifying the key and value separated by colon(:) and the
elements are separated by comma (,).The entire set of elements must be enclosed by curly
braces {}.
Dict={ }
6
Operation Description
cmp(dict1, dict2) Compares elements of both dict.
len(dict) Gives the total length of the dictionary.
type (variable) Returns the type of the passed variable. If passed variable is dictionary,
then it would return a dictionary type.
7
1. What is List Values? Describe about creating a list, accessing the values in list, deleting a list,
updating a list.
LIST VALUES:
CREATING A LIST:
There are several ways to create a new list, the simplest is to enclose the elements in square Bracket
[]
Output:
['Apple', 'Watermelon', 'Banana']
[17, 12.3]
[]
DELETING A LIST:
Any element in the list can be deleted, del removes an element from a list.
Example:
>>> a=(‘one’,’two’,’three’)
>>>del a(1)
>>>a
8
Output:
(‘one’,’three’)
UPDATING A LIST:
A slice operator on the left side of an assignment can update multiple elements:
>>> t = ['a', 'b', 'c', 'd', 'e', 'f']
>>> t[1:3] = ['x', 'y']
>>> print t
Output: ['a', 'x', 'y', 'd', 'e', 'f'].
2. Explain the basic List Operations and list slices in details with necessary programs.
LIST OPERATIONS:
24. Lists respond to the + and * operators much like strings; they mean concatenation and
repetition here too, except that the result is a new list, not a string.
LIST SLICES:
A sub-sequence of a sequence is called a slice and the operation that performs on
subsequence is called slicing.
>>> t[:4]
Output:['a', 'b', 'c', 'd']
>>> t[3:]
Output:['d', 'e', 'f']
9
>>> t[:]
Output : ['a', 'b', 'c', 'd', 'e', 'f']
Since lists are mutable, it is often useful to make a copy before performing operations..
A slice operator on the left side of an assignment can update multiple elements:
1.List.append( ): 2. List.remove ( )
The method append () appends a passed List.remove() method is to remove the
obj into the existing list. object from the list.
List.remove() method does not return any
Example value but removes the given object from
Eg 1: the list.
x = [123, 'xyz', 'zara', 'abc']; Example
x.append ( 2009 ); y = [123, 'xyz', 'zara', 'abc', 'xyz'];
print ( "Updated List : ", x) y.remove('xyz');
Output: Updated List: [123, 'xyz', 'zara', 'abc', print( "List 1 : ", y);
2009] y.remove('abc');
print( "List 2: ", y)
Eg 2: Output:
>>> t = ['a', 'b', 'c'] List 1: [123, 'zara', 'abc', 'xyz']
>>> t.append('d') List 2: [123, 'zara', 'xyz'
>>> print ( t)
Output:['a', 'b', 'c', 'd']
3. List.count ( ) 4. List.insert ( )
The method returns the count of how List.insert ( ) method inserts an object
many times an element occurs in specified into the list at the offset of an index.
list. Syntax : List.insert (index,object) #index
Example position starts from 0.
X = [123, 'xyz', 'zara', 'abc', 'xyz',123, ‘xyz’]; Example
Print (“Count for 123:”,X.count(123)) X = [123, 'xyz', 'zara', 'abc'];
Print (“Count for Zara:”,X.count(‘zara’)) X.insert (3,2009)
Print (“Count for xyz:”,X.count(‘xyz’)) Print( “Final List :”,X)
Output: Output:
5. List.pop ( ) 6. List.Sort ( )
List.pop ( ) method is used to return the List.Sort ( ) method is used to sort the
item at the given index position from the items in the list.
list and the removes that item.
Example
Example X = [54, 12, 85, 65, 74, 90];
X = [123, 'xyz', 'zara', 'abc']; Print(“sorted list:”, X.sort ( ))
Print( “List 1 :”,X.pop(0))
Print (“List 2: ”, X.pop(3)) Output:
Output: Sorted list= [12,54 ,65,74,85,90]
7.List.reverse ( ) 8. List.clear ( )
List.reverse ( )can reverse the order of List.clear() can remove all values
items in a list by using this method. contained in it by using this method.
Example Example
X = [123, 'xyz', 'zara', 'abc',’xyz’]; X = [123, 'xyz', 'zara', 'abc',’xyz’];
X.reverse( ) X..clear( )
Print ( “List 1 :”,X) Print (X)
In List loop, we use a loop to access all the element in a list. A loop is a block of code that
repeats itself until it run out of items to work with or until a certain condition is met.
Our loop will run once for every item in our list,
List Mutability:
Mutability is the ability for certain types of data to be changed without entirely recreating it.
List is a mutable data type; which mean we can change their element.
The syntax for accessing the elements of a list is the same as for accessing the characters of
a string—the bracket operator.
The expression inside the brackets specifies the index. Remember that the indices start at 0.
Lists are represented by boxes with the word “list” outside and the elements of the list
inside.
Fruits refer to a list with three elements indexed 0, 1 and 2.
Numbers contains two elements; the diagram shows that the value of the second element has
been reassigned from 123 to 5.
.
The in operator also works on lists.
>>> Fruit = ['Apple', 'Grapes', 'Orange']
>>> ‘Apple’ in Fruit
True
>>> ‘Watermelon’ in Fruit
False
Index can have negative value, it counts backward from the list.
Example:
Output:
Original List =[“red”, “green”, “blue”, “purple”]
[“pink”, “green”, “orange”, “purple”].
5. Discuss about the list aliasing, cloning list and list parameter with examples.
LIST ALIASING:
Since variables refer to object, If ‘A’ refers to an object and you assign ‘ B = A’, then both
variables refer to the same object:
>>> A = [1, 2, 3]
>>> B= A
>>> B is A
True
In this case, Diagram looks like this
[1,2,3]
B
13
The association of a variable with an object is called a reference. In this example, there are
two references to the same object.
An object with more than one reference has more than one name, then the object is said to
be aliased.
If the aliased object is mutable, changes made with one alias affect the other:
>>> B[0] = 9
>>> print A
[9, 2, 3]
Although this behaviour can be useful, it is error-prone. In general, it is safer to avoid
aliasing when you are working with mutable objects.
In this example:
A = ('banana')
B=( 'banana')
It almost never makes a difference whether A and B refer to the same string or not.
CLONING LIST:
If we want to modify a list and also keep a copy of the original, we need to be able to make
a copy of the list itself, not just the reference.
This process is sometimes called cloning, to avoid the ambiguity of the copy.
The easiest way to clone a list is to use the slice operator
>>>a=[1,2,3]
>>>b=a[:]
>>>print b
[1,2,3]
Taking any slice, creates a new list. In this case the slice happens to consists of the whole
list.
Now we are free to make changes to b without worrying about list ‘a’.
>>>b[0]=5
>>>print a
>>>print b
[1,2,3]
[5,2,3]
LIST PARAMETERS:
Passing a list to a function, the function gets a reference to the list. If the function modifies a
list parameter, the caller sees the change.
The parameter t and the variable letters are aliases for the same object. The stack diagram
looks like this:
__Main__ Letters
0 ‘a’
1 ‘b’
Delete_head t 2 ‘c’
6. Explain about tuples and also the concept of tuple assignment and tuples as return value with
example.
A tuple is a sequence of values.
The values can be any type, and they are indexed by integers, so in that respect tuples a like
lists. The important difference is that tuples are immutable.
To create a tuple with a single element, you have to include the final comma:
>>> t1 = ('a',)
>>> type(t1)
<type 'tuple'>
Another way to create a tuple is the built-in function tuple. With no argument, it creates an
empty tuple:
>>> t = tuple()
>>> print (t)
()
15
If the argument is a sequence (string, list or tuple), the result is a tuple with the elements of
the sequence:
>>> t = tuple('lupins')
>>> print (t)
('l', 'u', 'p', 'i', 'n', 's')
Because tuple is the name of a built-in function, avoid using it as a variable name.
Most list operators also work on tuples. The bracket operator indexes an element:
>>> t = ('a', 'b', 'c', 'd', 'e')
>>> print (t[0])
'a'
And the slice operator selects a range of elements.
>>> print t[1:3]
('b', 'c')
But if you try to modify one of the elements of the tuple, you get an error:
>>> t[0] = 'A'
TypeError: object doesn't support item assignment
can’t modify the elements of a tuple, but you can replace one tuple with another:
>>> t = ('a', 'b', 'c', 'd', 'e')
>>>t = ('A',) + t[1:]
>>> print (t)
('A', 'b', 'c', 'd', 'e')
TUPLE ASSIGNMENT:
One of the unique features of the python language is the ability to have a tuple on the left
hand side of an assignment statement.
This allows you to assign more than one variable at a time when the left hand side is a
sequence.
In the below example , we have two element list (which is a sequence ) and assign the first and
second elements of the variables x and y in a single statement.
>>> m = ( ‘have’, ‘fun’)
>>> x,y= m
>>> x
‘have’
>>>y
‘fun’
A function can only return one value, but if the value is a tuple, the effect is the same as
returning multiple values.
For example, if you want to divide two integers and compute the quotient and remainder, it
is inefficient to compute x/y and then x%y. It is better to compute them both at the same
time.
The built-in function divmod takes two arguments and returns a tuple of two values, the
quotient and remainder.
You can store the result as a tuple:
>>> t = divmod(7, 3)
>>> print t
(2, 1)
7. What is dictionary in python? List out the operations and methods with example.
Keys are unique within a dictionary while values may not be.
The values of a dictionary can be of any type, but the keys must be of an immutable data
type such as strings, numbers, or tuples.
Dictionary is one of the compound data type like strings, list and tuple. Every element in a
dictionary is the key-value pair.
An empty dictionary without any items is written with just two curly braces, like this: {}.
Creating a Dictionary:
A dictionary can be Created by specifying the key and value separated by colon(:) and the
elements are separated by comma (,).The entire set of elements must be enclosed by curly
braces {}.
17
Dict={ }
Example:
#Keys-Value can have mixed datatype
Example:
>>Dict2={“Name”: “Ankit”, “Subject”:[“Maths”, “Phy”, “Chemistry”],
“Marks”:[198,192,193], “Avg”:92}
>>Dict2[“Name”]
>>Dict2[“Avg”]
>>Dict2[“Subject”]
Output:
Ankit
20.1
[“Maths”, “Phy”, “Chemistry”]
Example:
Example
>>> My_dict={'Name':'Ankit','rank':5,'Average':78.9}
>>> My_dict['rank']=3
>>> My_dict
{'Name': 'Ankit', 'rank': 3, 'Average': 78.9}
DICTIONARY METHODS:
8 dict.get(key, default=None) For key, returns value or default if key not in dictionary
dict.has_key(key)
9 Returns true if key in dictionary dict, false otherwise
DICTIONARY OPERATION:
Operation Description Input Function Output
Dict1={“Name”:”Ankit”,”Age”:15,” Gender: Cmp(dict1,di 1
Compares
cmp(dict1, Male”} ct2) 0
dict2) elements of both
Dict2={“Name”:”Ankit”,”Age”:15} Cmp(dict2,d
dict.
Dict3={“Name”:”Ankit”,”Age”:15} ict3)
len(dict) Gives the total Dict1={“Name”:“Ankit”,“Age”:14,“Gender”: Len(dict1) 3
length of the
dictionary. ”F”} Len(dict2) 2
Dict2={“Name”:”Ankit”,”Gender”:14}
str(dict) Produces a Dict1={“Name”:”Ankit”,”Age”:15,”Gender” Str(dict1) {“Name”:
printable string ”Ankit”,”A
representation of a :”M”} ge”:14,
dictionary ,”Gender”:
”M”}
type Returns the type of Dict1={“Name”:”Ankit”,”Age”:14,”Gender” Type(dict1) <type
(variable) the passed variable. ‘dict’>
If passed variable :”M”}
is dictionary, then
it would return a
dictionary type.
19
Example:
>>>dict1 = {1: “Fruit”, 2: “Vegetabe”,3: “Fish”}
>>>Print(dict1)
>>>{1: “Fruit”, 2: “Vegetabe”,3: “Fish”}
>>> del dict[1]
>>>print(dict1)
>>>{ 2: “Vegetabe”,3: “Fish”}
The len function also works on dictionaries; it returns the number of key:value pairs:
>>> len(dict1)
3
Where:
Expr(x) is an expression,usually but not always containing X.
Iterable is some iterable.An itrable may be a sequence or an unordered collection a list, string or
tuple.
Example 1:
>>> a = [11,22,33,44]
>>> b =[x*2 for x in a]
>>>b
[22,44,66,88]
Example 2:
Given the following list of strings:
Names= [‘ankit’, ‘sumit’, ‘sujit’]
A list of all upper case Names
A List of Capitalized ( first letter upper case)
>>>[x.upper() for x in names]
[‘ANKIT’, ‘SUMIT’, ‘SUJIT’]
>>>[x.capitalize() for x in names]
[‘Ankit’ , ‘Sumit’ , ‘Sujit’]
Example 3:
>>> fish_tuple=('blowfish','clowfish','catfish','octopus')
>>> fish_list=[fish for fish in fish_tuple if fish != 'octopus']
>>> print(fish_list)
['blowfish', 'clowfish', 'catfish']
20
Example 4:
My_list=[]
for x in [20,40,60]:
for y in [2,4,6]:
My_list.append(x*y)
print (My_list)
Output: [40, 80, 120, 80, 160, 240, 120, 240, 360]
Note: This code multiplies the items in the first list (x) by the items in the second list (y) over each
iteration
Program For Example 4 using List Comprehension
My_list=[x*y for x in [20,40,60] for y in [2,4,6]]
print(My_list)
Output: [40, 80, 120, 80, 160, 240, 120, 240, 360]
List Comprehensions allows us to transform one list or other sequence into a new list. They Provide
a concise syntax for completing the task and limiting the lines of code.
Example 5:
#To create a simple list
x=[ i for i in range (10)]
print (x)
Output: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
1. SELECTION SORT:
def selectionSort(alist):
for fill slot in range(len(alist) - 1, 0, -1):
positionOfMax = 0
for location in range(1, fillslot + 1):
Thank You
if alist[location] >alist[positionOfMax]:
positionOfMax = location
temp = alist[fillslot]
alist[fillslot] = alist[positionOfMax]
alist[positionOfMax] = temp
alist = [54, 26, 93, 17, 77, 31, 44, 55, 20]
selectionSort(alist)
print(alist)
OUTPUT:
[26, 54, 93, 17, 77, 31, 44, 55, 20]
2. INSERTION SORT:
def insertionSort(alist):
for index in range(1,len(alist)):
currentvalue = alist[index]
position = index
while position > 0 and alist[position - 1] >currentvalue:
alist[position] = alist[position - 1]
position = position - 1
alist[position] = currentvalue
alist = [54, 26, 93, 17, 77, 31, 44, 55, 20]
insertionSort(alist)
print(alist)