1
Check math functions.
a) floor(), ceil(), trunc(), radians(), degrees(), sin(), cos(), tan().
b) fmod(), log10(), gcd(), pow(), modf().sqrt(), exp().
2
Understand Control Flow statements.
a) Convert the temperature value from one unit to another.
b) Display all the even/odd numbers between given two numbers
c) Check whether the given number is a prime or not.
d) Find the sum of all the numbers between given two numbers.
e) Find whether the given number is an Armstrong number or not.
f) Display first n Fibonacci numbers.
3
Implement user defined functions.
a) Function to find LCM of a number.
b) Function to find HCF of a number.
c) Recursive function to find sum of all numbers up to a given number.
d) Recursive function to find factorial of a number.
4
Check String Operations:
a) len(), split(), join(), upper(), lower(), swapcase(), title(),
b) Find(), index(), count(), replace(), sorted(), strip().
c) String slicing.
5
Check List and Tuple Operations.
a) len(), append(), extend(), insert(), remove().
b) reverse(), clear(), sort(), sorted(), count().
c) List comprehension: Creating list, Creating Matrix, Transpose of a
Matrix, Addition, Difference and Scalar multiplication of two matrices.
6
Check Dictionary and Set Operations.
a) Add element, Modify element, Delete element, clear(), copy().
b) get values, get keys, get items.
c) union(), intersection(), difference(), symmetrical_difference().
Understand File Handling in Python
a) Read data from a file.
b) Write data into a file.
7
Check Matrix operations using numpy.
a) diagonal(), max(), min(), sum(), mean(), sort(), transpose()
b) Arithmetic operations on matrix using arithmetic operators.
8
Handle data using pandas: Create an excel sheet and
a) Display statistical information, Perform queries on data.
b) Modify the index of the data, Sort the index.
c) Fill missing data.