0% found this document useful (0 votes)
22 views

Index Python

This document contains an index of Python programs covering different concepts like data types, control structures, functions, OOPs, files handling, exception handling, modules, packages, NumPy, MongoDB, data visualization and data preprocessing. The programs are grouped under different sections and each section contains multiple programs with example codes.

Uploaded by

rautn2426
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views

Index Python

This document contains an index of Python programs covering different concepts like data types, control structures, functions, OOPs, files handling, exception handling, modules, packages, NumPy, MongoDB, data visualization and data preprocessing. The programs are grouped under different sections and each section contains multiple programs with example codes.

Uploaded by

rautn2426
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Index

Sr. Sign
Name of the Program Page No.
No.

1 Python installation and configuration with windows

Programs for understanding the data types, control flow statements, blocks
and loops

i. Data type List, Tuple, Set, Dictionary and operation on these


data types
ii. Program to find the area of a square
iii. Program to find the area of rectangle
iv. Program to Check is a Number is Odd or Even

2 v. Program to Check is a Number is Positive, Negative or Zero


vi. Python Program to Check is a Number is Prime or not Prime
vii. Python Program to Check Year is Leap or Non-Leap.
viii. Python Program to Check Armstrong Number
ix. Write a program to print the sum of natural numbers using
recursion
x. Write a program to accept decimal number and print its octal,
binary and hexadecimal.
xi. Write a program to check whether entered string & number is
palindrome or not.

Programs for understanding functions, use of built in functions, user defined


functions
i. Python Program to Find the Addition, Subtraction, Multiplication
and Division of two numbers, make the Function for it.
ii. Python Program to find the Factorial of a number. using recursive
function.
3
iii. Python Program to display the multiplication Table. Make the
Function for it.
iv. Python program to demonstrate decorators and generators

Programs to use existing modules, packages and creating modules, packages

i. Python program shows use of built in module and packages at


least 30 built in functions
4 ii. Python program to create module of Arithmetic operation
iii. Python program to create package and use package
Programs for implementations of all object-oriented concepts like class,
method, inheritance, polymorphism etc. (Real life examples must be covered
for the implementation of object oriented concepts)
i. Create class called, library with data attributes like
Acc-number publisher, title and author, the methods of the
class should include a) Read ( ) - Acc- number, title, author,
publisher. b) Compute ( ) - to accept the number of day late,
calculate and display the fine charged at the rate of Rupees 5/-
per day. c) Display the data
5 ii. Python program for Bank demo Deposit, withdraw functions
and validation like cannot withdraw amount greater than
available balance if password is wrong for more than 3 times
block that account
iii. Python program for Inheritance demo covering all type of
inheritance
iv. Python program for Polymorphism Demo (Operator
overloading, Method overloading)

6 Programs for parsing of data, validations like Password, email, URL, etc.

7 Programs for Pattern finding should be covered.

i. Programs covering all the aspects of Exception handling, user


defined exception, Multithreading should be covered.
ii. Python program to perform Exception handling (Divide by
zero Exception)
iii. Python program for Integer Input Validation with Exception
Handling (Example of ValueError Exception).
iv. Program for IndexError Exception in Python with Example.
v. Python Program for Raising User Generated Exception
8
a) Write user defined exception program in python which will
except age as an input from the user and check whether the
user is eligible for voting or not. If age<18 it should raise the
exception as ‘Not eligible for voting’
vi. Python Program for Multithreading-- Write multithread
program, where one thread prints square of a number and
another thread prints cube of numbers. Also display the total
time taken for execution.
Programs demonstrating the IO operations like reading from file, writing into
file from different file types like data file, binary file, etc.

i. Python Program for writing log and change the log level.
ii. Python Program for read functions and write functions such as read(),
readline() and readlines() and write() and writelines()
9 iii. Write a program to read the contents of file and display occurrence of
given character.

iv. Python program on binary data file showing the file operations (read,
search, update, delete)

10 Programs to perform searching, adding, updating the content from the file.

Program for performing CRUD operation with MongoDB and Python

Write a python program using mongoDB database to create a “student”


11
collection having fields: Student-ID, Name, Course, Mobile, Address. (a dict
with keys like area, city, country, pin) Accept input from user to insert
documents. Write a MongoDB program to delete selected documents given in

12 Basic programs with NumPy as Array, Searching and Sorting, date & time
and String handling
Programs for series and data frames should be covered.

13 i. Create series and data frame manually

ii. Read CSV file perform statistical operation

Programs to demonstrate data pre-processing and data handling with data


14
frame (Missing value treatment, rank, sort, treatment for data duplication.)

Program for data visualization should be covered.

i. Python program for simple graph(line) generation


15
ii. Python program for Multiline graph

iii. Python program for creating scatter, bar, histogram, pie chart

You might also like