convert into to float python code example
Example 1: check if can convert to float python
try:
float(element)
except ValueError:
print "Not a float"
Example 2: string to float in python
float(str)
#ValueError in case of invalid entry like "abc" "12c"