r3emove an elemenet from lsit in python using index code example
Example 1: how to remove element from specific index in list in python
list.pop(index)
Example 2: drop an intex in a list python
listOfnum.remove()
list.pop(index)
listOfnum.remove()