Vérifiez si peut se convertir pour flotter Python

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