Nov-28-2023, 02:13 AM
(Nov-28-2023, 12:18 AM)rob101 Wrote: This is because you're altering the list object as you iterate over it. The way that I would do this is to have your.remove()
loop compile a list of values that need to be removed, than use that list to find and remove the values from thesorted_MD_list
.
Thank you.