Prepare Python Strings SWAP CASE(HACKER RANK)
You are given a string and your task is to swap cases. In other words, convert all lowercase letters to uppercase letters and vice versa.
For Example:
Www.HackerRank.com → wWW.hACKERrANK.COM
Pythonist 2 → pYTHONIST 2
Function Description
Complete the swap_case function in the editor below.
swap_case has the following parameters:
- string s: the string to modify
def swap_case(s):
result = s.swapcase()
return result
if __name__ == ‘__main__’:
s = input()
result = swap_case(s)
print(result)
No comments