Python Forum
Search Results
Post Author Forum Replies Views Posted [asc]
    Thread: unable to remove all elements from list based on a condition
Post: unable to remove all elements from list based on a...

list=[6.2,5.9,4.8,6.1,6.1,6.5,5.9,5.8,6.2] for a in list: if a<=6.0: list.remove(a) print(list)The output i am getting is : Output:[6.2, 4.8, 6.1, 6.1, 6.5, 5.8, 6.2]Q> Why 5....
sg_python General Coding Help 3 527 Jan-27-2024, 09:06 AM

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020