Skip to content
Advertisement

Finding the max element in a List

I have to find the max element in a list while filtering out all of the items inside of it that aren’t an integer or a float. So far I have this code and it seems to work except when giving the list [1, ]. I get an error saying that the list is empty and I can’t find the max element.

JavaScript

Advertisement

Answer

You can’t check type like that. You need to check using isinstance. Also, you can’t do a for loop and do lst.remove(item) the counter will get messed up.

I recommend you do a simple program to test it out. Here’s an example for you.

JavaScript

The above code is supposed to iterate through each element of list x. However, as you can see, it skips 4.0 and [6,7]. The reason, you removed x[1] and it resulted in 4.0 getting assigned to position x[1]. Similarly for [6,7] It moved one position to the left but your for loop iteration couldn’t catch it.

The output of the above code will be:

JavaScript

Instead, your code should be as follows:

JavaScript

The output will be as follows:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement