How can i remove an item from a list if it is found to match another item from another list?
for item in bigIpList:
for item2 in smallIpList:
if item==item2:
#remove item from bigIpList
How can i remove an item from a list if it is found to match another item from another list?
for item in bigIpList:
for item2 in smallIpList:
if item==item2:
#remove item from bigIpList