Report Bug
Qus :

What will be the output of the following Python code?

print("abc DEF".capitalize())

Qus

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

print("abc DEF".capitalize())


A. abc def
B. ABC DEF
C. Abc def
D. Abc Def


Solution
C. Abc def



Explanation
The first letter of the string is converted to uppercase and the others are converted to lowercase.



Report Bug