test = "hello World"
print(test.upper()) # HELLO WORLD
test = "Hello WoRLD"
print(test.lower()) # hello world
test1 = "hello world"
test2 = "Hello WORLD"
print(test1.capitalize()) # Hello world
print(test2.capitalize()) # Hello world
test = "welcome to python"
print(test.title()) # Welcom To Python
test = "Welcome To Python"
print(test.swapcase()) # wELCOME tO pYTHON