ischar - test if a value is a character
val.ischar()
The ischar() method tests whether val
is a character type (either a standard character or a wide
character).
true if val is a character,
false otherwise.
None.
'a'.ischar() // returns true
"hello".ischar() // returns false (it is a string/array)