how to check if a string is a valid floating point value python code example
Example: check if a string is float python
try:
float(element)
except ValueError:
print "Not a float"
try:
float(element)
except ValueError:
print "Not a float"