hello , so i am trying to removing outliers from my data , but unfortunately it can remove only limited value , can someone tell me what's wrong
for value in solnL_i:
if abs(value)>10:
print(value)
solnL_i.remove(value)
for i in solnL_i:
if abs(i)>10:print("what")
no matter how many times i run this i always have printed "what" few times