Compruebe si puede convertirse a Float Python
try:
float(element)
except ValueError:
print "Not a float"
Cozy Dev
try:
float(element)
except ValueError:
print "Not a float"