If the list is :
list = ["3" ,"5" ,"dog" , "1"]
and I want to add the max and min numbers within the list how do you do it? I was thinking I would do a loop and compare each of the numbers as iterating though, but as you can see there's a string in the list.
How do you compare the ints to find the max and min without getting an error because of the string?