Remove in a randomic way any array elemet.
List=["baby","computer","mouse","car","nootebook"]
print(List.pop())
print(List)
and if you want... remove a specific element you can print them
Like:
list=["books","store","location"]
print(list.pop(2))
Top comments (0)