What is the output of the following code ?
>>> "asd".isascii(), "".isascii(), "asd123".isascii(), "ß".isascii()
(True, True, True, False)
(True, False, True, False)
(True, False, False, False)
None of the above
isascii() - Return true if the string is empty or all characters in the string are ASCII
Comment here: