how to remove an item by its index in a list in python code example
Example 1: 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
Example 2: drop an intex in a list python
listOfnum.remove()