0% found this document useful (0 votes)
3 views1 page

Python Programming Exercises List

The document is an index of Python programming tasks, listing 10 different programs to be implemented. These tasks include calculating factorials, summing numbers, checking for palindromes, ASCII conversions, creating a simple calculator, sorting words, differentiating consonants and vowels, reading CSV files, and performing operations on employee data. Additionally, it involves using numpy for statistical calculations on arrays.

Uploaded by

jvekariya177
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views1 page

Python Programming Exercises List

The document is an index of Python programming tasks, listing 10 different programs to be implemented. These tasks include calculating factorials, summing numbers, checking for palindromes, ASCII conversions, creating a simple calculator, sorting words, differentiating consonants and vowels, reading CSV files, and performing operations on employee data. Additionally, it involves using numpy for statistical calculations on arrays.

Uploaded by

jvekariya177
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

INDEX

(Python)
SR. PAGE
NO. PROGRAM DEFINITION NO. SIGN.

1 Write a program to calculate Factorial value of a given no


using recursion function.
2 Write a program to do sum of N number using UDF.

3 Write a program to check the given number is palindrome or


not.
4 Write a program to convert a ASCII value to a char. & char. to
ASCII value.
5 Write a program to make simple calculator using UDF.

6 Write a program to sort words in Alphabetical order.


7 Write a python program to create a list of characters and
differentiate and print the consonants and vowels characters
from list.
8 Write a python script to read CSV file and display first 3
records and last 3 records from data.
9 Write a python script to read CSV file of Employee data with
field (eno, ename, salary). Perform the following operations:
1. Retrieve the maximum and minimum salary.
2. Display range of rows from [2:5]
3. Display all rows in reverse order.
4. Display all Odd number rows.
10 Write a python script to finding the shape and size of given
array using numpy and Calculate the
mean,mode,median,Standard deviation and variance.

You might also like