Answers for "how to check whether a string is a float or not"

1

check if a string is float python

try:
    float(element)
except ValueError:
    print "Not a float"
Posted by: Guest on May-21-2020

Code answers related to "how to check whether a string is a float or not"

Python Answers by Framework

Browse Popular Code Answers by Language