Q. What is the output of the following Python code: print('Python'.lower())?
β
Correct Answer: (A)
python
Explanation: The lower() method converts all characters of the string to lowercase.