Nov-12-2022, 08:34 PM
I've been working a problem in another forum and ran across something I don't understand.
Giving a list of numbers as input and then removing the numbers that are less than or equal to a boundry,
can't seem to get all numbers to be removed. Any help understanding why the numbers are not removed would be great.
The numbers is usually the second in the list.
Giving a list of numbers as input and then removing the numbers that are less than or equal to a boundry,
can't seem to get all numbers to be removed. Any help understanding why the numbers are not removed would be great.
The numbers is usually the second in the list.
boundry = 10 numbers = list(map(int, input('>> ').split(','))) print(f'list -> {numbers}') for number in numbers: if number <= boundry: print(f'removed number -> {number}') numbers.remove(number) print(f'Numbers left -> {numbers}')Output:
Output:>> 3,5,8,14,10
list -> [3, 5, 8, 14, 10]
removed number -> 3
removed number -> 8
removed number -> 10
Numbers left -> [5, 14]
As you can see, 3,8,10 are removed, but not 5.