how do you detect if a value held in a list is negative, I just need to find out if there is a value that is negative, so far i have this:
if list[range(list)] < 0
But surely this will only detect if all the values in list are negative.How would i go about doing this?
Also, how would i be able to detect if a value in the list was not an integer, for example it was a floating point number, or even a character
Thanks