Unit 3. Python Programming-15.09.2022
Unit 3. Python Programming-15.09.2022
Python is a very simple programming language, developed by Guido van Rossum in 1989. It is
named after the comedy television show Monty Python‘s Flying Circus and not after the Python
snake. It is easy to learn to all who are new to programming.
Python is a dynamic, interpreted (bytecode-compiled) language. It is platform independent, free
and open source, easy to learn, achieve the more tasks through less coding, fast in execution.
There are no type declarations of variables, parameters, functions, or methods in source code.
This makes the code short and flexible.
Python is a general-purpose language, which can be used in various domains including: Web
applications, Big data applications, Data science, Desktop software, Mobile apps, Machine
learning and AI. The SQL can be used for querying data from relational databases.
In our daily life we may require different tools to perform different tasks such as scissor for
cutting paper, screw driver for tightening of screw, removing the hook, scaling the fish or making
use of the scissors. If you can get one tool to perform plenty of task then that will be the most
preferred tool. Swiss knife is such a multi-functional tool having various tools such as blade,
opener, screwdriver, reamer and others one in all. In the same way Python is such a programming
language which is object oriented, functional programming and also declarative programming
language.
Fig. 10.0 (a) Swiss knife Fig. 10.0 (b) Comparison of Swiss knife with Python
10.7. Variables
10.8. Comments
Comments are used to add remarks or note in the source code. Comments are not executed by
interpreter. They are added to understand the source code for others. They are used primarily to
document the meaning and purpose of source code and its input and output requirements, so as
to remember later how it functions and how to use it.
For large and complex software, several programmers are working in teams and sometimes, a
programmer has to work on the program written by other programmer. In such situations,
documentations in the form of comments is useful to understand the logic of program. In Python,
a comment starts with # (hash sign). Everything following the # till the end of that line is treated
as a comment and the interpreter simply ignores it while executing the statement. The example
10.1 shows the first print statement is commented. So it will not print the word ―Hello‖.
Example 10.1
Program 10.3. Write a Python program to find the sum of two numbers.
The following program illustrates to find the sum of two numbers.
Variables of simple data types like integer, float, boolean that hold single value. But such variables are
not useful to hold a long list of information, such as months in a year, student names in a class, names
and numbers in a phone book or the list of artifacts in a museum. For this, Python provides other data
types like tuples, lists, dictionaries and sets.
10.9.2 Sequence
A Python sequence is an ordered collection of items, where each item is indexed by an integer. The three
types of sequence data types available in Python are Strings, Lists and Tuples. We will learn about each
of them in detail in later chapters. A brief introduction to these data types is as follows:
String – String is a group of characters. These characters may be alphabets, digits or special characters
Tuple – Tuple is a sequence of items separated by commas and items are enclosed in parenthesis
(). This is unlike list, where values are enclosed in brackets []. Once created, we cannot change the
tuple.
Example 10.4
10.9.3 Set
Set is an unordered collection of items separated by commas and the items are enclosed in curly
brackets { }. A set is similar to list, except that it cannot have duplicate entries. Once created,
elements of a set cannot be changed.
Example 10.5
In the above example, set1 is a collection of 5 integers. The set2 is collection of different data
types of elements. You must have noticed that elements of set2 have been displayed in an order
different from the order in which they have entered. Reason of this is that set is unordered. If you
run the same code again, it is possible that you will get an output with the elements arranged in a
different order. A set does not allow duplicate values, that you may observe for set3. Here, all the
10.9.5 Mapping
Mapping is an unordered data type in Python. Currently, there is only one standard mapping data
type in Python called dictionary.
Dictionary
Dictionary in Python holds data items in key-value pairs. Items in a dictionary are enclosed in
curly brackets { }. Dictionaries permit faster access to data. Every key is separated from its value
using a colon (:) sign. The key: value pairs of a dictionary can be accessed using the key. The keys
are usually strings and their values can be any data type. In order to access any value in the
dictionary, we have to specify its key in square brackets [].
Example 10.7
Bitwise Shifts the bits of the number to the right and fills 0 on
>>(RIGHT) voids left (fills 1 in the case of a negative number) as a
result. Similar effect as of dividing the number with
some power of two.
Bitwise Shifts the bits of the number to the left and fills 0 on
<<(LEFT) voids right as a result. Similar effect as of multiplying
the number with some power of two.
10.13 Expressions
An expression is defined as a combination of constants, variables, and operators. An expression
always evaluates to a value. A value or a standalone variable is also considered as an expression
but a standalone operator is not an expression. Some examples of valid expressions are given
below.
(a) 100
(b) num
(c) num – 20.4
(d) 3.0 + 3.14
(e) 23/3 -5 * 7(14 -2)
(f) "Global" + "Citizen"
10.13.1 Precedence of Operators
Evaluation of the expression is based on precedence of operators. When an expression contains
different types of operators, precedence determines which operator should be applied first. Higher
precedence operator is evaluated before the lower precedence operator. Most of the operators
studied till now are binary operators with two operands. The unary operators need only one
operand, and they have a higher precedence than the binary operators. The minus (-) as well as +
(plus) operators can act as both unary and binary operators, but ―not‖ is a unary logical operator.
#Depth is using - (minus) as unary operator
Value = -Depth
#not is a unary operator, negates True print (not (True))
The table 10.7 lists precedence of all operators from highest to lowest.
Table 10.7 Precedence of all operators in Python
Order of Operators Description
Precedence
1 ** Exponentiation (raised to the power)
2 ~ ,+, - Complement, unary plus and unary minus
In Example 10.13, the variable fname will get the string ‗Aadi‘, entered by the user. Similarly, the
variable age will get the string ‗17‘. We can typecast or change the datatype of the string data
accepted from user to an appropriate numeric value. The code in Example 10.14 convert the
accepted string to an integer. If the user enters any non-numeric value, an error will be generated.
Example 10.14
Python uses the print () function to output data to standard output device — the screen. More
about function will be covered in Chapter 12. The function print () evaluates the expression before
displaying it on the screen. The print () outputs a complete line and then moves to the next line
for subsequent output. The syntax for print () is:
print (value [, ..., sep = ' ', end = '\n'])
sep: The optional parameter sep is a separator between the output values. We can use a
character, integer or a string as a separator. The default separator is space.
end: This is also optional and it allows us to specify any string to be appended after the last value.
The default is a new line.
In Example 10.15, the third print function is concatenating strings, and we use + (plus) between
two strings to concatenate them. The fourth print function also appears to be concatenating
strings but uses commas (,) between strings. Actually, here we are passing multiple arguments,
separated by commas to the print function. As arguments can be of different types, hence the
print function accepts integer (16) along with strings here. But in case the print statement has
values of different types and ‗+‘ is used instead of comma, it will generate an error as discussed in
the next section under explicit conversion.
10.16 TYPE CONVERSION
Type conversion is used to covert the data type of any variable that is assigned or read using
input statement in Python. Let us take as example to understand it in better way. Consider the
following example.
Example 10.16.
The program was expected to display double the value of the number received and store in
variable num1. So, if a user enters 5 and expects the program to display 10 as the output, but the
program displays 55 in output. This is because the value returned by the input function is a
string ("5") by default. As a result, in statement num1 = num1 * 2, num1 has string value and *
acts as repetition operator which results in output as "55".
To get 10 as output, we need to convert the data type of the value entered by the user to integer.
Thus, we need to modify the program as follows:
Example 10.17
On execution, Program 10.6 gives an error as shown in output of the program, informing that the
interpreter cannot convert an integer value to string implicitly. It may appear quite intuitive that
the program should convert the integer value to a string depending upon the usage. However, the
interpreter may not decide on its own when to convert as there is a risk of loss of information.
Python provides the mechanism of the explicit type conversion so that one can clearly state the
desired outcome. Program 10.7 works perfectly using explicit type casting:
Program 10.7. Program to show explicit type casting.
In the above program, an integer value stored in variable “num1” is added to a float value stored
in variable “num2”, and the result was automatically converted to a float value stored in variable
sum1 without explicitly telling the interpreter. This is an example of implicit data conversion. You
may wonder that why the float value was not converted to an integer instead? This is due to type
promotion that allows performing operations, whenever possible by converting data into a wider-
sized data type without any loss of information.
10.17 DEBUGGING
A programmer can make mistakes while coding a program. These mistakes are called bugs or
errors in programming language. The program contains bugs may not execute or generate wrong
output. The process of identifying and removing such bugs, errors or mistakes is known as
debugging. The Errors occurring in programs can be categorised as – Syntax errors, Logical errors
Let us look at the output of Program 10.11 showing runtime errors while running the code. In
first attempt when a user enters value ‗0‘ for num2, it gives error ZeroDivisionError: float
6. Which data type will be used to represent the following data values and why?
Data values Data type Reason
Number of months in a year
Resident of Delhi or not
Mobile number
Pocket money
Volume of a sphere
Perimeter of a square
Name of the student
Address of the student
7. What will be the output of statement print(num1) in the following example when num1 = 4,
num2 = 3, num3 = 2
num1 += num2 + num
num1 = num1 ** (num2 + num3)
num1 **= num2 + num3
num1 = '5' + '5'
num1 = 2+9*((3*12)-8)/10
num1 = 24 // 4 // 2
num1 = float(10)
num1 = int('3.14')
8. What will be the output of following statements
a. print('Bye' == 'BYE')
b. print(10 != 9 and 20 >= 20)
c. print(10 + 6 * 2 ** 2 != 9//4 -3 and 29 >= 29/9)
d. print(5 % 10 + 10 < 50 and 29 <= 29)
e. print((0 < 6) or (not(10 == 6) and 10<0)))
9. Write a Python program to convert temperature in degree Celsius to degree Fahrenheit. If wa-
ter boils at 100°C and freezes as 0°C, use the program to find out what is the boiling point and
freezing point of water on the Fahrenheit scale. (Hint: T(°F) = T(°C) × 9/5 + 32)
10. Write a Python program to calculate the amount payable if money has been lent on simple in-
terest. Principal or money lent = P, Rate of interest = R% per annum and Time = T years. Then
Simple Interest (SI) = (P ×R × T)/ 100.
Amount payable = Principal + SI. P, R and T are given as input to the program.
11. Write a program to calculate in how many days a work will be completed by three persons A, B
and C together. A, B, C take x days, y days and z days respectively to do the job alone. The
formula to calculate the number of days if they work together is xyz/(xy + yz + xz) days where
x, y, and z are given as input to the program.
12. Write a program to enter two integers and perform all arithmetic operations on them.
13. Write a program to enter five subject marks and print the average marks.
14. Write a program to swap two numbers using a third variable.
15. Write a program to swap two numbers without using a third variable.
A variant of if statement called if....else statement that allows to write two alternative paths and
the control condition determines which path gets executed. The syntax for if....else statement is as
follows.
if condition:
In above example, condition num1 > num2 holds False for the values of num1 and num2 entered
by user. Therefore, the statement after else will be executed.
There may be a situation, when you have multiple conditions to check and these all conditions are
independent to each other. You can use elif statement to include multiple conditional expressions
after the if condition or between the if and else control structure.
The syntax for a selection structure using elif is as shown below.
if condition1:
statement1
elif condition2:
statement2
elif condition3:
statement3
else:
Three different numbers are checked in the above program. In Output1, the entered number 5 is
greater than 0. Here, the condition associated with if structure is true, so the statement to print
“Number is positive” is executed. In Output 2, the entered number –2 is less than 0. Here, the
condition associated with elif structure is true, so the statement to print “Number is negative” is
executed. In Output 3, the entered number 0 is neither greater than nor less than 0. Here, the
condition associated with both if and elif is false, so the statement just after else keyword to print
“Number is zero” is executed.
Example 11.3. Display the appropriate message as per the colour of signal at the road
crossing.
In above program, value entered by user is stored in variable digit. The values written after case
will be matched with value of digit one by one. If digit = 0 as specified in case 0 then statement to
print zero will be executed. If digit is not equal to 0, control will go to next case statement
specified as case 1. If digit =1, statement to print one will be executed. Similarly, it will go on for
case 2 to case 9. For last case, if digit is anything except digits 0 to 9, It will print “Invalid input”.
Assignment
1. Write a program to check whether a number is divisible by 7 or not.
2. Write a program to check whether an alphabet is a vowel or consonant.
3. Write a program to input month number and print the month name.
4. Write a program to check a triangle is equilateral, isosceles or scalene on the
basis of the length of the sides provided by user.
In above program, as the condition num 1 > num 2 is false for the values of num1 and num2
taken in program. Therefore, the block of statements associated with else will be executed as
shown in output.
11.4 Repetition
Sometimes we need to repeat the tasks such as payment of electricity bill is to be paid every
month. Let us take an example which illustrates iterative process in nature also. Figure 11.3
shows the phases of the day like morning, midday and evening. These phases are repeated every
day in the same order.
In the above program, print () function is used 5 times to print 5 different natural numbers. But
in the situation to print the first 100,000 natural numbers, it will not be efficient to write 100,000
print statements. In such case it is better to use loop or repetition in the program.
Looping constructs provide the facility to execute a set of statements in a program repetitively,
based on a condition. The statements in a loop are executed again and again as long as particular
logical condition remains true. This condition is checked based on the value of a variable called
the loop control variable. When the condition becomes false, the loop terminates. It is the
responsibility of the programmer to ensure that this condition eventually does become false so
that there is an exit condition and it does not become an infinite loop. For example, if we did not
set the condition count <= 100000, the program would have never stopped. There are two looping
constructs in Python - for and while. Let us learn these looping constructs in detail.
11.4.1 For Loop
The for statement is used to iterate over a range of values or a fixed number of sequences. The for
loop is executed for each of the items in the range. These values can be numeric, string, list, or
tuple. The flowchart depicting the execution of a for loop is given in Figure 11.4.
In the above program, letter variable represents a character of string ―PYTHON‖. For each iteration
of for loop, it prints a character of string ―PYTHON‖.
We discussed the programs that are example of using a for loop in Python. Let us also take a look
at how range function can be used with for loop.
The Range() Function
The range () is a built-in function in Python. Syntax of range () function is:
range (start, stop, step)
It is used to create a list containing a sequence of integers from the given start value upto stop
value (excluding stop value), with a difference of the given step value.
#Creating a list of first 10 natural numbers using range function.
>>>list(range(1,11,1))
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
#Creating a list of first 10 even numbers using range function.
>>> list(range(2,21,2))
[2, 4, 6, 8, 10, 12, 14, 16, 18, 20]
#step value is 5
>>> list(range(0, 30, 5))
[0, 5, 10, 15, 20, 25]
In function range (), start, stop and step are parameters. More on functions is covered in next
chapter 12. The start and step parameters are optional. If start value is not specified, by default
the list starts from 0. If step is also not specified, by default the value increases by 1 in each
iteration. Let us take an example to understand this.
#start and step not specified
>>> list(range(11))
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
In the above example, value of only step parameter of range() function has been provided. It will
take start=0 and step=1 by default.
In above program, range (5) function will generate a sequence of numbers [0,1,2,3,4]. Variable
num will hold the elements of this sequence one by one for different iterations of for loop. In each
iteration of for loop condition num>0 will be evaluated. Condition num>0 is false for first element
of the sequence where num=0. Therefore, print(num*10) will not be executed only for first element
that is 0. For rest of the elements, condition num>0 holds true. So, print(num*10) will be executed
to get output as shown above.
Assignment
1. Write a program to print first 10 natural number in reverse order.
In the above program, when value of num becomes 8, the break statement is executed and the for
loop terminates.
In above program, a built-in function print () is used to print the value. Another approach to solve
the above problem is to divide the program into different blocks of code and keep the block of code
in a function which is used to do some specific task. The process of dividing a computer program
If we compare program 12.1 and 12.2, it is evident that program 12.2 looks more organised and
easier to read. Function max () used in this program, is a user defined function. Another function
used in this program is print () which is a built-in function. In general, we have two types of
functions in Python – User defined functions and Built-in functions.
The Advantages of Function
Following are the advantages of using functions in a program:
Increases readability, particularly for longer code as by using functions, the program is
better organized and easy to understand.
Reduces code length as same code is not required to be written at multiple places in a
program. This also makes debugging easier.
Increases reusability, as function can be called from another function or another program.
Thus, we can reuse or build upon already defined functions and avoid repetitions of
writing the same piece of code.
Work can be easily divided among team members and completed in parallel.
12.3 User defined Functions
Taking advantage of reusability feature of functions, there are large number of functions already
available in Python under standard library. We can directly call these functions in our program
without defining them. However, in addition to the standard library functions, we can define our
In above program, addnum() is a user-defined function that takes two integer numbers a s input,
calculate sum of two numbers and display it. In order to execute the function, we need to call it.
The function can be called in the program by writing function name followed by () as shown for
addnum() function in the last line of Program 12.3.
The def is the keyword used to define a function and function name is written following def
keyword. When it runs, it creates a new function object and assigns it a new name. As it is a
statement, so there is no issue in using it inside any control structures like if else. Let us take an
example to understand this:
Example 12.1:
Let us assume that the user has input 5 during the execution of the Program 12.4. So, num refers
to the value 5. It is then used as an argument in the function.
Argument
num
Parameter 5
n
Fig. 12.3: Both argument and parameter refer to the same value
In above program output, number and num have the same id before value of num is incremented.
After increment, the id of num has changed. After running this program code, you will get the
different memory location as per your computer configuration.
Let us understand the above output through illustration as depicted in Figure 12.4.
Default Parameter
Python allows assigning a default value to the parameter. A default value is a value that is pre-
decided and assigned to the parameter when the function call does not have its corresponding
argument.
Pass-by-object-reference:
Python utilizes a system, which is known as “Call by Object Reference” or “Call by assignment” to
pass arguments to a function. In the event that you pass arguments like whole numbers, strings
or tuples to a function, the passing is like call-by-value because you can‘t change the value of the
immutable objects being passed to the function as illustrated in Example 12.2. Whereas passing
mutable objects can be considered as call by reference because when their values are changed
inside the function, then it will also be reflected outside the function as illustrated in Example
12.3.
Example 12.3
Python code to demonstrate
Example 12.4
# Python code to demonstrate call by reference
The return statement takes zero or more values, separated by commas. Using commas actually
returns a single tuple. To return multiple values, use a tuple or list. Returning multiple items
separated by commas is equivalent to returning a tuple. Next, we will take examples where a
function returns more than one values.
Example 12.5
Let us take a Program using function which returns two values area and perimeter of rectangle
using tuple.
So far, we have learnt that a function may or may not have parameter(s) and a function may or
may not return any value(s). In Python, as per our requirements, we can have the function in
either of the following ways:
• Function with no argument and no return value
In above program‘s output, Global variable num is accessed as the ambiguity is resolved by
prefixing keyword global to it.
Anonymous Functions in Python
Anonymous functions are also called lambda functions in Python because instead of declaring
them with the standard def keyword, you use the lambda keyword.
Example 12.8
Assignment 12.2
1. Write a program using function that takes a positive integer and returns the one‘s position
digit of the integer.
2. Write a program using function that takes two numbers n and returns the number that has
minimum one‘s digit.
Assignment 12.3
1. Write a program that reads a number, than converts it into octal and hexadecimal equivalent
numbers using built-in functions of Python.
2. Write a program that inputs a real number and converts it to nearest integer using built-in
functions. It also displays the given number rounded off to 3 places after decimal.
12.5.2 Module
Other than the built-in functions, the Python standard library also consists of a number of
modules. While a function is a grouping of instructions, a module is a grouping of functions. As
we know that when a program grows, functions are used to simplify the code and to avoid
repetition. For a complex problem, it may not be feasible to manage the code in one single file.
Then, the program is divided into different parts under different levels, called modules. Also,
suppose we have created some functions in a program and we want to reuse them in another
program. In that case, we can save those functions under a module and reuse them. A module is
created as a Python (.py) file containing a collection of function definitions.
To use a module, we need to import the module. Once we import a module, we can directly use all
the functions of that module. The syntax of import statement is as follows:
import modulename1 [, modulename2, …]
This gives us access to all the functions in the module(s). To call a function of a module, the
function name should be preceded with the name of the module with a dot(.) as a separator. The
syntax is as shown below:
modulename.functionname()
Built-in Modules
Python library has many built-in modules that are really handy to programmers. Let us explore
some commonly used modules and the frequently used functions that are available in those
modules – math, random, statistics.
math Module – It contains different types of mathematical functions. Most of the functions in this
module return a float value. To use a module, it must be imported only once anywhere in the
program. So import math module it using the following statement.
Example 12.10
To extract the integer part of 624.7, use trunc () function from math module.
#ceil and sqrt already been imported above
>>> from math import trunc
>>> sqrt ( trunc (625.7))
The above code will give result as 25.0.
A programming statement wherein the functions or expressions are dependent on each other‘s
execution for achieving an output is termed as composition, here are some other examples of
composition:
a = int (input ("First number: "))
print ("Square root of ", a , " = ", math.sqrt(a))
print(floor(a+(b/c)))
math.sin (float(h)/float(c))
Note: Save this module with file name as p12_16.py instead of p12.16 as practiced in naming the
file name in this book. Because .(dot) has the special meaning in Python which can not be used for
naming the module which has to be referred in another Python program.
Save the above code in a separate file name as p12_16.py. Now write the following below code in a
new file. Save it as p12.17 and then Run to get output.
8. Write a program that has a user defined function to accept 2 numbers as parameters, if
number 1 is less than number 2 then numbers are swapped and returned, i.e., number 2
is returned in place of number 1 and number 1 is reformed in place of number 2,
otherwise the same order is returned.
9. Write a program that contains user defined functions to calculate area, perimeter or
surface area whichever is applicable for various shapes like square, rectangle, triangle,
circle and cylinder. The user defined functions should accept the values for calculation as
parameters and the calculated value should be returned. Import the module and use the
appropriate functions.
10. Write a program that creates a GK quiz consisting of any five questions of your choice. The
questions should be displayed randomly. Create a user defined function score () to
calculate the score of the quiz and another user defined function remark (score value) that
accepts the final score to display remarks as follows:
Marks Remarks
5 Outstanding
4 Excellent
3 Good
2 Read more to score more
1 Needs to take interest
0 General knowledge will always help you. Take it seriously.
In above program, in-built function len() is used to find the length of the string str1.
Assignment
1. Write a program to find length of the name of the city entered by user. Display its first and
last character also.
2. Write a program to display character at index -1 of a given string.
3. Write a program to display character at index (2+3) of string ―Python Learners‖.
13.3 String Operations
As we know that string is a sequence of characters. Python allows certain operations on string
data type, such as concatenation, repetition, membership and slicing. These operations are
explained in the following subsections with suitable examples.
13.3.1 Concatenation
To concatenate means to join. Python allows to join two strings using concatenation operator plus
which is denoted by symbol +.
>>> str1 = 'Hello' #First string
>>> str2 = 'World!' #Second string
>>> str1 + str2 #Concatenated strings
'HelloWorld!'
#str1 and str2 remain same after this operation.
>>> str1
'Hello'
In above program, upper () function is used to print the string str1 in uppercase letters. The
function lower () is used to print the string str2 in lowercase letters. The function replace () is used
to replace all occurrences of ‗a‘ with ‗*‘ in str1. The function swapcase() is used to print the string
str2 with uppercase characters converted to lowercase and vice versa.
In the above program, the string is printed in reverse order without using a user defined function.
In the above program, the string is printed in reverse order with the help of a using a user defined
function.
In above program, insert() function is used to insert an element ‗D‘ at second index in the list
list1. The function extend() is used to append each element of the list2 passed as argument to the
end of the list1. The function sort () is used to sort the elements of the list1. The function min() is
used to find the minimum value among elements of list2.
Assignment
Write a program to input two lists list1 and list2 and do following manipulations on them using
built-in functions
1. Append a single element passed as an argument at the end of the list1.
2. Appends each element of the list2 passed as argument to the end of the list1.
3. Find the number of times a given element occurs in list2.
In above program, list list1 of numbers is passed as an argument to function increment(). This
function increases every element of the list by 5.
Assignment
1. Write a program to decrement the elements of a list. The list is passed as an argument to a
function.
2. Write a program to get square of the elements of a list containing first ten natural numbers.
The list is passed as an argument to a function.
Observe that, when we pass a list as an argument, we actually pass a reference to the list. Hence
any change made to list2 inside the function is reflected in the actual list list1.
(2). If the list is assigned a new value inside the function, then a new list object is created and it
becomes the local copy of the function. Any changes made inside the local copy of the function are
not reflected back to the calling function.
Junior Software Developer, Class XI, Unit 3 Python Programming Page 100
5. Code to get sum of the elements of the list list1 (a) sum(list1) (b) sum (). list1 (c) list1.sum
() (d) list1(). sum
6. When a list appears as an element of another list, it is called a (a) nested list (b) singly list
(c) empty list (d) doubly list
7. Which of the following will create an empty list L? (a) L = list (b) L = list (0) (c) L = list () (d)
L = List(empty)
8. If L1 = [1, 3, 5] and L2 = [2, 4, 6] then L1 + L2 will yield (a) [1, 2, 3, 4, 5, 6] (b) [1, 3, 5, 2, 4,
6] (c) [3, 7, 11] (d) [1, 3, 5, [2, 4, 6]]
9. Given a list L= [1, 2, 3, 4, 5, 6, 7], what would L [1: 5] return? (a) [1, 2, 3, 4] (b) [2, 3, 4, 5]
(c) [2, 3, 4] (d) [1,2, 3, 4, 5]
10. Given a list L= [1, 2, 3, 4, 5, 6, 7], what would L [2: -2] return? (a) [1, 2, 3, 4] (b) [2, 3, 4, 5]
(c) [2, 3, 4] (d) [3, 4, 5]
11. Given a list L= [1, 2, 3, 4, 5, 6, 7], what would L [-3: 99] return? (a) [2, 3, 4] (b) [3, 4, 5] (c)
[5, 6, 7] (d) Error
12. What is printed by the Python code? print (list (range (3))) (a) [0, 1, 2, 3] (b) [1, 2, 3] (c) [0,
1, 2] (d) 0, 1, 2
13. What is the output when we execute list("hello")? (a) ['h', 'e', 'l', 'l', 'o'] (b) ['hello'] (c) ['llo'] (d)
['olleh']
14. What is the output of following code? (a) H (b) a (c) Hasan (d) Dia
names = ['Hasan', 'Balwant', 'Sean', 'Dia']
print (names [-1] [-1])
15. Which of the following will always return a list? (a) max () (b) min () (c) sort () (d) sorted ()
B. State whether True or False
1. List data type in Python is mutable.
2. A list can have elements of different data types, such as integer, float, string, tuple or even
another list.
3. A = [ ] and A = list () will produce the same result.
4. Lists once created cannot be changed.
5. To sort a list, sort () and sorted (), both can be used.
6. The extend () adds a single element to a list.
7. The append () can add an element in the middle of a list.
8. The insert () can add an element in the middle of a list.
9. The del statement can only delete list slices and not single elements from a list.
10. The del statement can work similar to the pop () function.
C. Fill-in the blanks
1. List is an __________ sequence.
2. Elements of a list are enclosed in __________ brackets.
3. List indices start from ______.
4. If no parameter is given, then pop () function returns and removes the __________ element
of the list.
5. To create an empty list, function __________can used.
6. The _____ operator adds one list to the end another list.
7. The _____ operator replicates a list.
8. To check if an element is in list, __________ operator is used.
9. To delete a list slice from a list, __________ statement is used
10. A __________ list contains another list as its member.
11. The __________ function is used to insert element at a designated position in a list.
12. The __________ function is used to delete element to remove an element from designated
index in a list.
13. The __________ function can append a list element to a list.
Junior Software Developer, Class XI, Unit 3 Python Programming Page 101
14. The __________ function sorts a list and makes changes in the list.
15. The __________ function sorts a list and returns another list.
D. Programming Questions
1. What will be the output of the following statements?
(a) list1 = [12,32,65,26,80,10]
list1.sort()
print(list1)
(b) list1 = [12,32,65,26,80,10]
sorted(list1)
print(list1)
(c) list1 = [1,2,3,4,5,6,7,8,9,10]
list1[: -2]
list1[:3] + list1[3:]
(d) list1 = [1,2,3,4,5]
list1[len(list1)-1]
2. Consider the following list myList. What will be the elements of myList after the following
two operations:
myList = [10,20,30,40]
myList.append([50,60])
myList.extend([80,90])
3. What will be the output of the following code segment:
myList = [1,2,3,4,5,6,7,8,9,10]
for i in range (0, len(myList)):
if i%2 == 0:
print(myList[i])
4. What will be the output of the following code segment:
a. myList = [1,2,3,4,5,6,7,8,9,10]
del myList[3:]
print(myList)
b. myList = [1,2,3,4,5,6,7,8,9,10]
del myList[:5]
print(myList)
c. myList = [1,2,3,4,5,6,7,8,9,10]
del myList[::2]
print(myList)
5. The record of a student (Name, Roll No., Marks in five subjects and percentage of marks) is
stored in the following list:
stRecord = ['Raman','A-36‘, [56,98,99,72,69], 78.8]
Write Python statements to retrieve the following information from the list stRecord.
a) Percentage of the student
b) Marks in the fifth subject
c) Maximum marks of the student
d) Roll no. of the student
e) Change the name of the student from ‗Raman‘ to ‗Raghav‘
6. Write a program to find the number of times an element occurs in the list.
7. Write a program to read a list of n integers (positive as well as negative). Create two new
lists, one having all positive numbers and the other having all negative numbers from the
given list. Print all three lists.
8. Write a function that returns the largest element of the list passed as parameter.
9. Write a function to return the second largest number from a list of numbers.
10. Write a program to read a list of n integers and find their median.
Junior Software Developer, Class XI, Unit 3 Python Programming Page 102
11. Write a program to read a list of elements. Modify this list so that it does not contain any
duplicate elements, i.e., all elements occurring multiple times in the list should appear
only once.
12. Write a program to read a list of elements. Input an element from the user that has to be
inserted in the list. Also input the position at which it is to be inserted. Write a user
defined function to insert the element at the desired position in the list.
13. Write a program to read elements of a list.
(a) The program should ask for the position of the element to be deleted from the list.
Write a function to delete the element at the desired position in the list.
(b) The program should ask for the value of the element to be deleted from the list. Write a
function to delete the element of this value from the list.
14. Read a list of n elements. Pass this list to a function which reverses this list in-place
without creating a new list.
Junior Software Developer, Class XI, Unit 3 Python Programming Page 103
Chapter 15. Tuples and Dictionaries
Alok was helping her younger sister Alka in preparing her school assignment. This assignment
was regarding to fill name of days in a week and name of months in a year. Alok told Alka to write
the assignment by herself first. There were some mistakes in Alka‘s answers. Then, Alok explained
Alka that name of days in a week are fixed and we cannot make changes in that. Same in the case
with all 12 months in year. Then he helped Alka in writing the exact name of seven days of the
week and 12 month‘s name of the year. Similarly, In programming also sometimes we require a
sequence where elements can‘t be changed. In Python programming, tuples restrict the changes
in its elements.
Junior Software Developer, Class XI, Unit 3 Python Programming Page 104
#tuple2 is the tuple of strings
>>> tuple2 = ("Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday")
>>> tuple2
('Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday')
#tuple3 is the tuple of mixed data types
>>> tuple3 = ('Economics', 87, 'Accountancy', 89.6)
>>> tuple3
('Economics', 87, 'Accountancy', 89.6)
#tuple4 is the tuple with list as an element
>>> tuple4 = (10, 20, 30, [40, 50])
>>> tuple4
(10, 20, 30, [40, 50])
#tuple5 is the tuple with tuple as an element
>>> tuple5 = (1, 2, 3, 4, 5, (10,20))
>>> tuple5
(1, 2, 3, 4, 5, (10, 20))
If there is only a single element in a tuple then the element should be followed by a comma. If we
assign the value without comma it is treated as integer. It should be noted that a sequence
without parenthesis is treated as tuple by default.
#incorrect way of assigning single element to #tuple
#tuple5 is assigned a single element
>>> tuple5 = (20)
>>> tuple5
20
>>>type(tuple5) #tuple5 is not of type tuple
<class 'int'> #it is treated as integer
#Correct Way of assigning single element to
#tuple
#tuple5 is assigned a single element
>>> tuple5 = (20,) #element followed by comma
>>> tuple5
(20,)
>>>type(tuple5) #tuple5 is of type tuple
<class 'tuple'>
#a sequence without parentheses is treated as
#tuple by default
>>> seq = 1,2,3 #comma separated elements
>>> type(seq) #treated as tuple
<class 'tuple'>
>>> print(seq) #seq is a tuple
(1, 2, 3)
15.1.1 Accessing Elements in a Tuple
Elements of a tuple can be accessed in the same way as a list or string using indexing and slicing.
Let us take few examples to illustrate this.
>>> tuple1 = (2, 4, 6, 8, 10, 12) #initializes a tuple tuple1
#returns the first element of tuple1
>>> tuple1[0]
2
#returns fourth element of tuple1
>>> tuple1[3]
8
Junior Software Developer, Class XI, Unit 3 Python Programming Page 105
#returns error as index is out of range
>>> tuple1[15]
IndexError: tuple index out of range
#an expression resulting in an integer index
>>> tuple1[1+4]
12
#returns first element from right
>>> tuple1[-1]
12
15.1.2 Tuple is Immutable
Tuple is an immutable data type. It means that the elements of a tuple cannot be changed after it
has been created. An attempt to do this would lead to an error as illustrated in the example given
below:
>>> tuple1 = (1, 2, 3, 4, 5)
>>> tuple1[4] = 10
TypeError: 'tuple' object does not support item assignment
However, an element of a tuple may be of mutable type, e.g., a list.
#4th element of the tuple2 is a list
>>> tuple2 = (1, 2, 3, [8, 9])
#modify the list element of the tuple tuple2
>>> tuple2[3][1] = 10
#modification is reflected in tuple2
>>> tuple2
(1, 2, 3, [8, 10])
In above example, parentheses are used to create an empty tuple tuple1. Assignment operator in
the statement tuple2 = (1, 2, 3, 4, 5) is used to initialize tuple2 with first five natural numbers.
Junior Software Developer, Class XI, Unit 3 Python Programming Page 106
Next statement, (s1, s2, s3, s4, s5) = tuple2 is used to assign first element of tuple2 to s1, second
element of tuple2 to s2 and so on.
15.2 Tuple Operations
A number of operations like concatenation, repetition, membership and slicing can be performed
on tuples. Let us learn these tuple operations one by one.
15.2.1 Concatenation
Python allows us to join tuples using concatenation operator depicted by symbol +. We can also
create a new tuple which contains the result of this concatenation operation. Let us take few
examples to illustrate this.
>>> tuple1 = (1, 3, 5, 7, 9)
>>> tuple2 = (2, 4, 6, 8, 10)
>>> tuple1 + tuple2 #concatenates two tuples
(1, 3, 5, 7, 9, 2, 4, 6, 8, 10)
>>> tuple3 = ('Red', 'Green', 'Blue')
>>> tuple4 = ('Cyan', 'Magenta', 'Yellow' , 'Black')
#tuple5 stores elements of tuple3 and tuple4
>>> tuple5 = tuple3 + tuple4
>>> tuple5
('Red', 'Green', 'Blue', 'Cyan', 'Magenta', 'Yellow', 'Black')
Concatenation operator can also be used for extending an existing tuple. When we extend a tuple
using concatenation a new tuple is created.
>>> tuple6 = (1, 2, 3, 4, 5)
#single element is appended to tuple6
>>> tuple6 = tuple6 + (6,)
>>> tuple6
(1, 2, 3, 4, 5, 6)
#more than one elements are appended
>>> tuple6 = tuple6 + (7, 8, 9)
>>> tuple6
(1, 2, 3, 4, 5, 6, 7, 8, 9)
15.2.2 Repetition
Repetition operation is depicted by the symbol *. It is used to repeat elements of a tuple. We can
repeat the tuple elements. The repetition operator requires the first operand to be a tuple and the
second operand to be an integer only.
>>> tuple1 = ('Hello', 'World')
>>> tuple1 * 3
('Hello', 'World', 'Hello', 'World', 'Hello', 'World')
#tuple with single element
>>> tuple2 = ("Hello",)
>>> tuple2 * 4
('Hello', 'Hello', 'Hello', 'Hello')
15.2.3 Membership
The in operator checks if the element is present in the tuple and returns True, else it returns
False.
>>> tuple1 = ('Red', 'Green', 'Blue')
>>> 'Green' in tuple1
True
The not in operator returns True if the element is not present in the tuple, else it returns False.
>>> tuple1 = ('Red', 'Green', 'Blue')
Junior Software Developer, Class XI, Unit 3 Python Programming Page 107
>>> 'Green' not in tuple1
False
15.2.4 Slicing
Like string and list, slicing can be applied to tuples also. Let us take few examples to illustrate
this.
#tuple1 is a tuple
>>> tuple1 = (10, 20, 30, 40, 50, 60, 70, 80)
#elements from index 2 to index 6
>>> tuple1[2:7]
(30, 40, 50, 60, 70)
#all elements of tuple are printed
>>> tuple1[0:len(tuple1)]
(10, 20, 30, 40, 50, 60, 70, 80)
#slice starts from zero index
>>> tuple1[:5]
(10, 20, 30, 40, 50)
#slice is till end of the tuple
>>> tuple1[2:]
(30, 40, 50, 60, 70, 80)
#step size 2
>>> tuple1[0:len(tuple1):2]
(10, 30, 50, 70)
#negative indexing
>>> tuple1[-6:-4]
(30, 40)
#tuple is traversed in reverse order
>>> tuple1[::-1]
(80, 70, 60, 50, 40, 30, 20, 10)
In above program, operator + is used to concatenate the tuples. Symbol * is used with value 2 to
print tuple1 twice. Membership operator is used check that ‗b‘ exists in tuple2 or not. The concept
of slicing is used to print elements of tuple1 in reverse order.
Junior Software Developer, Class XI, Unit 3 Python Programming Page 108
15.3 Tuple Methods and Built-In Functions
Python provides many functions to work on tuples. Table 15.1 list some of the commonly used
tuple methods and built-in functions.
Table 15.1 Built-in functions and methods for tuples
Method Description Example
len() Returns the length or the number of >>> tuple1 = (10,20,30,40,50)
elements of the tuple passed as the >>> len (tuple1)
argument 5
tuple() Creates an empty tuple if no argument >>> tuple1 = tuple ()
is passed. Create a tuple if a sequence is >>> tuple1
passed as argument ()
>>> tuple1 = tuple (‗aeiou‘) #string
>>> tuple1
(‗a‘, ‗e‘, ‗i‘, ‗o‘, ‗u‘)
>>> tuple2 = tuple ([1,2,3]) #list
>>> tuple2
(1, 2, 3)
>>> tuple3 = tuple(range(5))
>>> tuple3
(0,1,2,3,4)
count() Returns the number of times the given >>> tuple1 =(10,20,30,10,40,10,50)
element appears in the tuple >>> tuple1.count(10)
3
>>>tuple1.count (90)
0
index() Returns the index of the first occurrence >>> tuple1 = (10,20,30,40,50)
of the element in the given tuple >>> tuple1.index(30)
2
>>> tuple1. index(90)
ValueError: tuple.index(x) : x not in tuple
sorted() Takes elements in the tuple and returns >>> tuple1 = (―Rama‖, ―Heena‖, ―Raj‖,
new sorted list. It should be noted that, ―Mohsin‖, ―Aditya‖)
sorted() does not make any change to >>> sorted (tuple1)
the original tuple [‗Aditya‘, ‗Heena‘, ‗Mohsin‘, ‗Raj‘, ‗Rama‘]
Junior Software Developer, Class XI, Unit 3 Python Programming Page 109
In above program, len() function is used to find length of the tuple1. The function min() is used to
find minimum of the tuple2. The function sum() is used to get sum of the elements of tuple1.
15.4 Tuple Assignment
Assignment of tuple is a useful feature in Python. It allows a tuple of variables on the left side of
the assignment operator to be assigned respective values from a tuple on the right side. The
number of variables on the left should be same as the number of elements in the tuple. Let us
take an example to illustrate this.
#The first element 10 is assigned to num1 and
#the second element 20 is assigned to num2.
>>> (num1,num2) = (10,20)
>>> print(num1)
10
>>> print(num2)
20
>>> record = ("Pooja",40,"CS")
>>> (name, rollNo, subject) = record
>>> name
'Pooja'
>>> rollNo
40
>>> subject
'CS'
>>> (a, b, c, d) = (5,6,8)
ValueError: not enough values to unpack
(expected 4, got 3)
If there is an expression on the right side then first that expression is evaluated and finally
the result is assigned to the tuple. Let us take an example to illustrate this.
#15 is assigned to num3 and
#25 is assigned to num4
>>> (num3, num4) = (10+5,20+5)
>>> print(num3)
15
Junior Software Developer, Class XI, Unit 3 Python Programming Page 110
>>> print(num4)
25
15.5 Nested Tuples
A tuple inside another tuple is called a nested tuple. In a nested tuple, each tuple is considered as
an element. Loop control structures can be used to access the elements in a nested tuple. Let us
take few examples of nested tuple.
>>> tuple1 = (1,2,3, (4,5))
>>> tuple1
(1, 2, 3, (4, 5))
>>> tuple2 = ((1,2), (3,4), (5,6))
>>> tuple2
((1, 2), (3, 4), (5, 6))
Here, (4,5) is a nested tuple as it an element of another tuple tuple1. Similarly, (1, 2), (3, 4) and (5,
6) are nested tuples as these tuples are elements of another tuple tuple2.
Nested tuple can be used to represent a specific data record. For example, records of many
students consisting RollNo, Name and Marks can be stored in a nested tuple. Let us do an activity
to demonstrate the use of nested tuples to store records of students and print them.
In the above program, details like roll number, name and marks of students are saved in a tuple.
To store details of many such students we created nested tuples using for loop.
15.6 Tuple Handling
Junior Software Developer, Class XI, Unit 3 Python Programming Page 111
Junior Software Developer, Class XI, Unit 3 Python Programming Page 112
15.7 Introduction to Dictionaries
The data type dictionary falls under mapping. It is a mapping between a set of keys and a set of
values. The key-value pair is called an item. A key is separated from its value by a colon (:) and
consecutive items are separated by commas. Items in dictionaries are unordered, so we may not
get back the data in the same order in which we had entered the data initially in the dictionary.
15.7.1 Creating a Dictionary
To create a dictionary, the items entered are separated by commas and enclosed in curly braces.
Each item is a key value pair, separated through colon (:). The keys in the dictionary must be
unique and should be of any immutable data type like number, string or tuple. The values can be
repeated and can be of any data type. Let us take few examples of creating dictionaries.
#dict1 is an empty Dictionary created
#curly braces are used for dictionary
>>> dict1 = {}
>>> dict1
{}
#dict2 is an empty dictionary created using
#built-in function
>>> dict2 = dict()
>>> dict2
{}
#dict3 is the dictionary that maps names
#of the students to respective marks in #percentage
>>> dict3 = {'Mohan':95, 'Ram':89, 'Suhel':92, 'Sangeeta':85}
>>> dict3
{'Mohan': 95, 'Ram': 89, 'Suhel': 92, 'Sangeeta': 85}
Junior Software Developer, Class XI, Unit 3 Python Programming Page 113
15.7.2 Accessing Items in a Dictionary
We have already seen that the items of a sequence (string, list and tuple) are accessed
using a technique called indexing. The items of a dictionary are accessed via the keys rather
than via their relative positions or indices. Each key serves as the index and maps to a
value.
The following example shows how a dictionary returns the value corresponding to the
given key:
>>> dict3 = {'Mohan':95, 'Ram':89, 'Suhel':92, 'Sangeeta':85}
>>> dict3['Ram']
89
>>> dict3['Sangeeta']
85
#the key does not exist
>>> dict3['Shyam']
KeyError: 'Shyam'
In the above examples the key 'Ram' always maps to the value 89 and key 'Sangeeta' always
maps to the value 85. So, the order of items does not matter. If the key is not present in
the dictionary we get KeyError.
15.8 Dictionaries are mutable
Dictionaries are mutable which implies that the contents of the dictionary can be changed after it
has been created.
15.8.1 Adding a new item
We can add a new item to the dictionary as shown in the following example:
>>> dict1 = {'Mohan':95, 'Ram':89, 'Suhel':92, 'Sangeeta':85}
>>> dict1['Meena'] = 78
>>> dict1
{'Mohan': 95, 'Ram': 89, 'Suhel': 92,'Sangeeta': 85, 'Meena': 78}
15.8.2 Modifying an Existing Item
The existing dictionary can be modified by just overwriting the key-value pair. Example to modify
a given item in the dictionary:
>>> dict1 = {'Mohan':95, 'Ram':89, 'Suhel':92, 'Sangeeta':85}
#Marks of Suhel changed to 93.5
>>> dict1['Suhel'] = 93.5
>>> dict1
{'Mohan': 95, 'Ram': 89, 'Suhel': 93.5, 'Sangeeta': 85}
15.9 Dictionary Operations
Except membership, other operations like concatenation, repetition and slicing are not supported
by dictionaries. Let us learn membership operation on dictionary data type in Python
programming.
Membership
The membership operator ‘in’ checks if the key is present in the dictionary and returns True, else
it returns False.
>>> dict1 = {'Mohan':95, 'Ram':89, 'Suhel':92, 'Sangeeta':85}
>>> 'Suhel' in dict1
True
The not in operator returns True if the key is not present in the dictionary, else it returns False.
>>> dict1 = {'Mohan':95, 'Ram':89, 'Suhel':92, 'Sangeeta':85}
>>> 'Suhel' not in dict1
Junior Software Developer, Class XI, Unit 3 Python Programming Page 114
False
15.10 Traversing A Dictionary
We can access each item of the dictionary or traverse a dictionary using for loop.
>>> dict1 = {'Mohan':95, 'Ram':89, 'Suhel':92, 'Sangeeta':85}
Method 1
In this method we use key of the dictionary to get corresponding value among all the elements of
dictionary as illustrated below:
>>> for key in dict1:
print(key, ':', dict1[key])
Mohan: 95
Ram: 89
Suhel: 92
Sangeeta: 85
Method 2
In this method we use both key and value of each element to access elements of the dictionary as
illustrated below:
>>> for key, value in dict1.items():
print(key, ':', value)
Mohan: 95
Ram: 89
Suhel: 92
Sangeeta: 85
In above program, the function keys() is used to print all the keys of dict1.
The function values () is used to print all the values of dict1.
The statement print(dict1[‗Suhel‘]) is used to print the value for key = ‗Suhel‘.
The statement dict1[‗Sangeeta‘] =95 is used to update the value to 95 for key = ‗Sangeeta‘.
15.11 Dictionary Methods and Built-In Functions
Junior Software Developer, Class XI, Unit 3 Python Programming Page 115
Python provides many functions to work on dictionaries. Table 15.2 lists some of the commonly
used dictionary methods.
Table 15.2 Built-in functions and methods for dictionary
Method Description Example
len() Returns the length or the >>> dict1 = {‗Mohan‘ :95, ‗Ram‘ :89,
number of key: value pairs of ‗Suhel‘:92,‗Sangeeta‘ :85}
the dictionary passed as the >>> len (dict1)
argument. 4
dict() Create a dictionary from a Pair1 = [(‗Mohan‘,95), (‗Ram‘,89),
sequence of key-value pairs. (‗Suhel‘,92),(‗Sangeeta‘,85)]
>>> pair1
[(‗Mohan‘,95), (‗Ram‘,89), (‗Suhel‘,92), (‗Sangeeta‘,85)]
>>> dict1 = dict (pair1)
>>> dict1
{‗Mohan‘: 95, ‗Ram‘: 89, ‗Suhel‘: 92, ‗Sangeeta‘: 85}
key() Returns a list of keys in the >>> dict1 = {‗Mohan‘: 95, ‗Ram‘: 89, ‗Suhel‘: 92,
dictionary. ‗Sangeeta‘: 85}
>>> dict1.keys()
dict_keys ([‗Mohan‘, ‗Ram‘, ‗Suhel‘, ‗Sangeeta‘])
values() Returns a list of values in the >>> dict1 = {‗Mohan‘: 95, ‗Ram‘: 89, ‗Suhel‘: 92,
dictionary. ‗Sangeeta‘: 85}
>>> dict1.values()
dict_values ([95,89,92,85])
items() Returns a list of tuples(key- >>> dict1 = {‗Mohan‘: 95, ‗Ram‘: 89, ‗Suhel‘: 92,
value) pair. ‗Sangeeta‘: 85}
>>> dict1.items()
dict_items([(‗Mohan‘,95), (‗Ram‘,89), (‗Suhel‘,92),
(‗Sangeeta‘,85)])
get() Returns the value >>> dict1 = {‗Mohan‘: 95, ‗Ram‘: 89, ‗Suhel‘: 92,
corresponding to the key ‗Sangeeta‘: 85}
passed as the argument. If the >>> dict1.get(‗Sangeeta‘)
key is not present in the >>> 85
dictionary it will return None
update() Appends the key-value pair of >>> dict1 = {‗Mohan‘: 95, ‗Ram‘: 89, ‗Suhel‘: 92,
the dictionary passed as the ‗Sangeeta‘: 85}
argument to key-value pair of >>> dict2 = {‗Sohan‘ :79, ‗Geeta‘ :89}
the given dictionary >>> dict1.update(dict2)
>>> dict1
{‗Mohan‘: 95, ‗Ram‘: 89, ‗Suhel‘: 92, ‗Sangeeta‘: 85,
‗Sohan‘ :79, ‗Geeta‘: 89}
>>> dict2
{‗Sohan‘ :79, ‗Geeta‘ :89}
Junior Software Developer, Class XI, Unit 3 Python Programming Page 116
del() Deletes the item with the given >>> dict1 = {‗Mohan‘: 95, ‗Ram‘: 89, ‗Suhel‘: 92,
key. To delete the dictionary ‗Sangeeta‘: 85}
from the memory we write: >>> del dict1 [‗Ram‘]
del Dict_name >>> dict1
{‗Mohan‘: 95, ‗Suhel‘: 92, ‗Sangeeta‘: 85}
>>> del(dict1 [‗Mohan‘])
>>> dict1
{‗Suhel‘: 92, ‗Sangeeta‘: 85}
>>> del dict1
>>> dict1
NameError: name ‗dict1‘ is not defined
clear() Deletes or clear all the items of >>> dict1 = {‗Mohan‘: 95, ‗Ram‘: 89, ‗Suhel‘: 92,
the dictionary. ‗Sangeeta‘: 85}
>>> dict1.clear()
>>> dict1
{}
In above program, the function items() is used to print all the elements of dict1. The function del()
is used to delete the item with key Suhel. The function clear() is used to delete all the elements of
dict1.
15.12 Manipulating Dictionaries
In this chapter, we have learnt how to create a dictionary and apply various methods to
manipulate it. The Program 15.10 shows the application of those manipulation methods on
dictionaries.
Junior Software Developer, Class XI, Unit 3 Python Programming Page 117
Junior Software Developer, Class XI, Unit 3 Python Programming Page 118
In above Program, dictionary emp is created which stores names of the employee as key and their
salary as values.
Junior Software Developer, Class XI, Unit 3 Python Programming Page 119
In above program, numberNames is a dictionary holding digits (0 to 9) as key and their Name as
corresponding values in a user-defined function convert(). Now name of each digit of the number
entered by user is stored in the variable result by accessing the value from the dictionary using
that digit as key of the dictionary.
Junior Software Developer, Class XI, Unit 3 Python Programming Page 120
tuple1.count(1)
11. What will be the output of the following code (a) 0 (b) 3 (c) 4 (d) 0,3,5,7
tuple1 = (1,2,3,1,4,1,5,1,7)
tuple1.index(1)
12. What will be the output of the following code (a) 0 (b) 6 (c) '1','2','3' (d) TypeError
tuple1 = ('1','2','3')
sum(tuple1)
13. What will be the output of the following code (a) 1 (b) (1,2,3) (c) ValueError (d) TypeError
(a,b,c,d) = (1,2,3)
14. What will be the output of the following code (a) 5 (b) 10 (c) ValueError (d) TypeError
(a,b) = (10-5,10+5)
print(b-a)
15. A tuple inside another tuple is called a (a) nested tuple (b) singly tuple (c) doubly tuple (d)
complex tuple
16. Which of the following statement creates an empty dictionary? (a) d = empty ( ) (b) d = { } (c)
d = dict[ ] (d) d = empty_dict{ }
17. What will be the output of the following code (a) 0 (b) 1 (c) 89 (d) 85
Dict1 = {'M':95,'R':89,'S':92,'T':85}
Dict1['R']
18. What will be the output of the following code (a) 0 (b) 89 (c) 100 (d) ValueError
Dict1 = {'M':95,'R':89,'S':92,'T':85}
Dict1['R'] =100
print(Dict1['R'])
19. What will be the output of the following code (a) True (b) False (c) ‗R‘ (d) ValueError
Dict1 = {'M':95,'R':89,'S':92,'T':85}
‗R‘ in dict3
20. What will be the output of the following code (a) True (b) False (c) ‗R‘ (d) ValueError
Dict3 = {'M':95,'R':89,'S':92,'T':85}
100 in dict3
Junior Software Developer, Class XI, Unit 3 Python Programming Page 121
2. Elements of a tuple can be accessed using index values, starting from ___.
3. The ________ operator is used to check whether particular element is a part of tuple or
not.
4. Python allows us to join tuples using _________ operator depicted by symbol +.
5. In dictionary, each key serves as the _________ and maps to a value.
6. Function _________ returns a list of tuples(key-value) pair of a dictionary.
7. Function clear () returns an _________ dictionary.
8. Dictionaries are _________.
9. The method _________ removes a random key-value pair from a dictionary.
10. Except _________, other operations like concatenation, repetition and slicing are not
supported by dictionaries.
D. Programming Questions
1. Consider the following tuples, tuple1 and tuple2:
tuple1 = (23,1,45,67,45,9,55,45)
tuple2 = (100,200)
Find the output of the following statements:
(a) print(tuple1.index(45))
(a) print(tuple1.count(45))
(b) print(tuple1 + tuple2)
(c) print(len(tuple2))
(d) print(max(tuple1))
(e) print(min(tuple1))
(f) print(sum(tuple2))
(g) print(sorted (tuple1)) print(tuple1)
2. Consider the following dictionary stateCapital:
stateCapital = {"MadhyaPradesh":"Bhopal", Bihar":"Patna", "Maharashtra":"Mumbai",
"Rajasthan":"Jaipur"}
Find the output of the following statements:
a. print(stateCapital.get("Bihar"))
b. print(stateCapital.keys())
c. print(stateCapital.values())
d. .print(stateCapital.items())
e. .print(len(stateCapital))
f. .print("Maharashtra" in stateCapital)
g. .print(stateCapital.get("Assam"))
h. .del stateCapital["MadhyaPradesh"]
1. print(stateCapital)
3. Write a program to read email IDs of n number of students and store them in a tuple.
Create two new tuples, one to store only the usernames from the email IDs and second to
store domain names from the email IDs. Print all three tuples at the end of the program.
[Hint: You may use the function split ()]
4. Write a program to input names of n students and store them in a tuple. Also, input a
name from the user and find if this student is present in the tuple or not. We can
accomplish these by:
a. writing a user defined function
b. using the built-in function
5. Write a Python program to find the highest 2 values in a dictionary.
6. Write a Python program to create a dictionary from a string.
Junior Software Developer, Class XI, Unit 3 Python Programming Page 122
7. Write a program to input your friends‘ names and their Phone Numbers and store them in
the dictionary as the key-value pair. Perform the following operations on the dictionary:
a. Display the name and phone number of all your friends
b. Add a new key-value pair in this dictionary and display the modified dictionary
c. Delete a particular friend from the dictionary
d. Modify the phone number of an existing friend
e. Check if a friend is present in the dictionary or not
f. Display the dictionary in sorted order of names
Junior Software Developer, Class XI, Unit 3 Python Programming Page 123