Report Bug
Qus :

What will be the output of the following Python code?

print('1Rn@'.lower())

Qus

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

print('1Rn@'.lower())


A. n
B. 1rn@
C. rn
D. r


Solution
B. 1rn@



Explanation
Uppercase letters are converted to lowercase. The other characters are left unchanged.



Report Bug