What is the output of the following code ?
>>> "asd".isalpha(), "".isalpha(), "asd123".isalpha()
(True, True, False)
(True, True, True)
(True, False, False)
None of the above
isalpha() - Return true if all characters in the string are alphabetic and there is at least one character, false otherwise
Comment here: