In this program, we will take a string as input and swap cases of a given string.
Steps to solve the program
- Take a string as input.
- Swap the cases of the characters using swapcase().
- Print the output.
#Input string
str1 = "Learning Python"
#Printing output
print(str1.swapcase())
Output :
lEARNING pYTHON