Download as pdf or txt
Download as pdf or txt
You are on page 1of 1

Python Lab: Assignment-11 (14/11/2022)

1. Write a Python program to append a new item to the end of the array.
2. Write a Python program to reverse the order of the items in the array.
3. Write a Python program to remove a specified item using the index from an array.
4. Write a Python program to remove the first occurrence of a specified element from an array.
5. Write a Python program to find the greatest common divisor (GCD) of two integers
6. Write a Python program to convert degree to radian.
7. Write a Python program to calculate the area of a trapezoid.
8. Write a Python program to calculate the area of a parallelogram.
9. Write a Python program to calculate surface volume and area of a cylinder.
10. Write a Python program to multiply two integers without using the * operator in python.
11. Write a Python program to calculate the area of regular polygon.
12. Write a Python program to solve the Fibonacci sequence using recursion.
13. Write a Python program to count float number in a given mixed list using lambda.
14. Write a Python program to sort a given mixed list of integers and strings using lambda.
Numbers must be sorted before strings.
15. Write a Python program to count the occurrences of the items in a given list using lambda.

You might also like