str.isalpha()
NA
#!/usr/bin/python3 str = "this"; # No space & digit in this string print (str.isalpha()) str = "this is string example....wow!!!" print (str.isalpha())
True False