remove element at an index usig remove pythin code example
Example 1: how to remove an item from a certain index in python
arr = [0, 1, 2, 3, 4]
del arr[1]
# arr is now equal to [0, 2, 3, 4]
Example 2: how to remove a element from list in python and print it
pop(n) removes the element at the given index number and can print it