Programming With Python Practical Questions
List Of Practicals
- Write simple Python program to display message on screen
- Write simple Python program using operators.
- Write simple Python program to demonstrate use of conditional statements.
- Write Python program to demonstrate use of looping statements.
- Write Python program to perform operations on Lists.
- Write Python program to perform operations on Tuples.
- Write Python program to perform operations on Sets.
- Write Python program to perform operations on Dictionaries.
- a) Write Python program to demonstrate math built- in functions (Any 2 programs)
b) Write Python program to demonstrate string built – in functions (Any 2 programs). - Develop user defined Python function for given problem:
a) Function with minimum 2 arguments b) Function returning values. - Write Python program to demonstrate use of:
a) Built in module (e.g. keyword, math, number, operator) b) user defined module. - Write Python program to demonstrate use of:
a) built-in packages (e.g. NumPy, Pandas) b) user defined packages. - Write Python program to demonstrate use of:
a) Method overloading b) Method overriding. - Write Python program to demonstrate use of:
a) Simple inheritance b) Multiple inheritance - Write a program in Python to handle user defined exception for given problem .