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

8

python is integer

(1.23).is_integer() # Returns false
Posted by: Guest on March-26-2020
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 float or not in python"

Python Answers by Framework

Browse Popular Code Answers by Language