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,

Write a function swapcase(str) that convert the lowercase and uppercase letters in

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!