Examveda

What will the following code output:
string = "Python"
print(string.lower())

A. python

B. PYTHON

C. pyThon

D. PyThOn

Answer: Option A

Solution (By Examveda Team)

The correct answer is Option A: python

Here's why:

The code uses the .lower() method on a string.

The .lower() method is a built-in function in Python for strings.

Its purpose is to convert all uppercase characters in a string to lowercase.

In the given code, the string is "Python".

When string.lower() is executed, it converts the 'P' to 'p'.

All other characters are already in lowercase, so they remain unchanged.

Therefore, the output is "python".

This Question Belongs to Python Program >> Strings In Python

Join The Discussion

Comments (1)

  1. Mamatha Siripuram
    Mamatha Siripuram:
    8 months ago

    Answer is A

Related Questions on Strings in Python