0 votes
in Python by
In Python how do you convert a string into lowercase?

1 Answer

0 votes
by

All the upper cases in a string can be converted into lowercase by using the method: string.lower()

ex: string = ‘GREATLEARNING’ print(string.lower())

o/p: greatlearning

Related questions

0 votes
asked Nov 15, 2020 in Python by rajeshsharma
0 votes
asked May 17, 2020 in Python by SakshiSharma
...