You are viewing a single comment's thread. Return to all comments →
def swap_case(s): my_list = [] for i in s: if 65 <= ord(i) <= 90: i = chr(ord(i) + 32) my_list.append(i) elif 97 <= ord(i) <= 122: i = chr(ord(i) - 32) my_list.append(i) else: my_list.append(i) return ''.join(my_list) if __name__ == '__main__': s = input() result = swap_case(s) print(result)
Seems like cookies are disabled on this browser, please enable them to open this website
I agree to HackerRank's Terms of Service and Privacy Policy.
sWAP cASE
You are viewing a single comment's thread. Return to all comments →