Report Bug
Qus :

What will be the output of the following Python code snippet?

print('a@ 1,'.islower())

Qus

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

print('a@ 1,'.islower())


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


Solution
A. True



Explanation
The islower() method in Python checks if all the alphabetic characters in a given string are in lowercase. If the string contains at least one uppercase character or non-alphabetic character, it returns False. Otherwise, it returns True.

In the case of print('a@ 1,'.islower()), the output will be True.





Report Bug