isnumeric - test if a value is a number
val.isnumeric()
The isnumeric() method tests whether
val is a numeric type (either an integer or a floating-point
number).
true if val is numeric,
false otherwise.
None.
42->isnumeric()
true
3.14->isnumeric()
true
"hello".isnumeric()
false