TRUE
if all characters in the string are alphabetic and there is at least one character,
FALSE
otherwise.
pystr_isalpha(str)
pystr_isalnum
, pystr_isnumeric
pystr_isalpha("abc")
pystr_isalpha("abc123")
pystr_isalpha("abc!")
pystr_isalpha(c("one", "2", "three!"))
Run the code above in your browser using DataLab