Question: Write a function swapcase(str) that convert the lowercase and uppercase letters in a string. For example, if the input is Hello World Then your function
Write a function swapcase(str) that convert the lowercase and uppercase letters in a string. For example, if the input is
Hello World
Then your function should return the string
hELLO wORLD
Thank you,

main.py Load default template... 1 def swapcase(str): # your code goes here 3 4 return 6 if name == '__main__': user_string=input() print(swapcase (user_string))
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
