Report Bug
Qus :

What will be the output of the following Python code?

print('ab'.isalpha())

Qus

निम्नलिखित Python कोड का आउटपुट क्या होगा?

print('ab'.isalpha())


A. True
B. False
C. None
D. Error


Solution
A. True



Explanation
The string has only letters.



Report Bug