Quantcast
Viewing all articles
Browse latest Browse all 5800

Python isdecimal()

@Hughes_Tooling wrote:

How can I use isdecimal() on a string returned by PropertyListBox. I can't get this code to work for some reason.

    if results:
        for number in results:
            number = unicode(number, "utf-8")
            if not number.isdecimal():
                print 'Enter numbers only!'
                return(None)
        results = map(float, results)

Thanks Mark

Edited because the conversion from string to float didn't work. The above code works on whole numbers but fails on decimal numbers.

Posts: 2

Participants: 1

Read full topic


Viewing all articles
Browse latest Browse all 5800

Trending Articles