Code for the 10 lab problems about Python Lists
1. Display a list in the reverse order without using reverse()
2. Create a slice of the list without using slicing syntax [:]
3. Create a list of strings. Remove empty strings from the list of strings.
4. Find a value in the list of integers, and if it is present, replace it with 999. Update all the occurrences except the first.
5. Create a list of integers. Find sum of all elements, minimum, maximum and length without using any built-in python function.
6. Write a Python program to remove duplicates from a list.
7. Write a Python program to find the second smallest number in a list.
8. Write a Python program to split a list at every Nth element.
9. Write a Python program to extend a list without append()
10. Write a Python program to create and add two 3X3 matrices using lists.