Report Bug
Qus :

What will be the output of the following Python code?

print('a B'.isalpha())

Qus

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

print('a B'.isalpha())


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


Solution
B. False



Explanation
Space is not a letter.



Report Bug