Write a Python program to lowercase the characters in a string.
Answers
Answered by
0
Python, lower() is a built-in method used for string handling. The lower() methods returns the lowercased string from the given string. It converts all uppercase characters to lowercase.
Answered by
0
Answer:
In Python, lower() is a built-in method used for string handling. The lower() methods returns the lowercased string from the given string. It converts all uppercase characters to lowercase.The string swapcase() method converts all uppercase characters to lowercase and vice versa of the given string, and returns it. Here string_name is the string whose cases are to be swapped. Parameter: The swapcase() method does not takes any parameter.
Explanation:
Similar questions