how to know if something is a float or a string 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"