INDEX
Page
S. No. Name of the Experiment
No.
Write a program to enter two integers, two floating numbers and
1
then perform all arithmetic operations on them.
Write a program to check whether a number is an Armstrong number
2
or not.
Write a program to print the sum of all the primes between two
3
ranges.
Take 2 numbers as input from the user. Write a program to swap the
4
numbers.
Write a menu driven program to accept two strings from the user and
5
perform various functions using user defined functions.
6 Write a program to perform List Operations.
Write a program to find the Euclidean distance between two
7
coordinates. Take both the coordinates from the user as input.
Write a program to find the Simple Interest by using a function when
8 the values of principal, rate of interest and time period are provided
by the user.
Given the first two terms of an Arithmetic Series, find the Nth term
9
of the series. Assume all inputs are provided by the user.
10 Write a program to print Fibonacci Series 0112358……….N
11 Write a Python program to demonstrate the use of recursion.
Write a program illustrating various functions of mathematical
12
library in Python.
13 Write a program to show the working of Bar Graphs.
14 Write a program to show the working of Pie Chart.
15 Write a Python program to create Class and Object.
Write a Python program to copy the contents of a file to another file
16
in a text file.
17 Write a program illustrating load() and dump() in binary file.
18 Write a Python program to insert data into CSV file and display it.
Page
S. No. Name of the Experiment
No.
Write a Python program to create a Numpy array and perform the
19
basic matrix operation.
20 Write a program to perform binary search using recursion.
21 Demonstrate the use of inheritance.
Write a Python program that takes a text file as input and returns the
22
number of words of a given text file.
Write a program to read a binary file having employee data in the
23 form of list and search for the record of a particular employee
entered by user.
Write a program to create an array with 3 rows and 4 columns with
24
each element set to 0 using Numpy.
25 Write a program to perform Transpose using NumPy.