Periksa apakah dapat mengonversi ke python float

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