Answers for "how to change case of string in python"

3

python string to lower

str = 'heLLo WorLD'
print(str.lower())
# hello world
Posted by: Guest on October-26-2020
0

how to convert uppercase to lowercase and vice versa in python

def swap_string():
	s=input()
	swapped_string=""
	swapped_string+=s.swapcase()
    return swapped_string
Posted by: Guest on May-26-2020

Code answers related to "how to change case of string in python"

Python Answers by Framework

Browse Popular Code Answers by Language