to convert all lowercase to uppercase and upper case to lowercase python code example
Example: how to change a string to small letter in python
my_str = "Hello World"
my_str.lower()
print(my_str)
my_str = "Hello World"
my_str.lower()
print(my_str)