NumPy isdecimal() function
The isdecimal() function returns True if there are only decimal characters in the element, otherwise, this function will return False. This function calls unicode.isdecimal for every string element of the array. It is important to note that the decimal characters include digit characters and all those characters that can be used to form decimal-radix numbers, e.g. U+0661, ARABIC-INDIC DIGIT ONE, etc.Continue Reading