nimble.match.nonNumeric¶
- nimble.match.nonNumeric(value)¶
Determine if a value is non-numeric.
Return True if the value is non-numeric, otherwise False. Non-numeric values include any value without a python or numpy numeric type.
- Parameters:
value
- Returns:
bool
See also
Examples
>>> nonNumeric('abc') True >>> nonNumeric(None) True >>> nonNumeric('8') True >>> nonNumeric(8) False >>> nonNumeric(float('nan')) False