Sprawdź, czy można przekonwertować na Python Float

try:
    float(element)
except ValueError:
    print "Not a float"
Cozy Dev