0% found this document useful (0 votes)
21 views2 pages

Python Index

The document is an index of programming experiments, detailing various tasks to be completed using Python. It includes programs for arithmetic operations, checking Armstrong numbers, performing list operations, and demonstrating concepts like recursion and file handling. Additionally, it covers the creation of graphs, classes, and matrix operations using libraries such as NumPy.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
21 views2 pages

Python Index

The document is an index of programming experiments, detailing various tasks to be completed using Python. It includes programs for arithmetic operations, checking Armstrong numbers, performing list operations, and demonstrating concepts like recursion and file handling. Additionally, it covers the creation of graphs, classes, and matrix operations using libraries such as NumPy.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

INDEX

S. Page
Name of the Experiment
No. No.

Write a program to enter two integers, two floating numbers and then perform
1
all arithmetic operations on them.

2 Write a program to check whether a number is an Armstrong number or not.

3 Write a program to print the sum of all the primes between two ranges.

4 Take 2 numbers as input from the user. Write a program to swap the numbers.

Write a menu driven program to accept two strings from the user and perform
5
various functions using user defined functions.

6 Write a program to perform List Operations.

Write a program to find the Euclidean distance between two coordinates. Take
7
both the coordinates from the user as input.

Write a program to find the Simple Interest by using a function when the values
8
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 of the
9
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 library in


12
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 in a text
16
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.

Write a Python program to create a Numpy array and perform the basic matrix
19
operation.
S. Page
Name of the Experiment
No. No.

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 number of
22
words of a given text file.

Write a program to read a binary file having employee data in the form of list
23
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 each
24
element set to 0 using Numpy.

25 Write a program to perform Transpose using NumPy.

You might also like