I need to remove multiple value from list in python based on conditional check given in the loop.
Facing issue: when I tried to remove the value from list by using list.remove('value'), index value getting changed the immediate next value after removal value in the list get skipped in the conditional check from the loop.
Do we have any other way to delete multiple from list in python based on conditonal check.