You are viewing a single comment's thread. Return to all comments →
def swap_case(s):
new_s = '' for i in s: if i.isupper(): new_s += i.lower() elif i.islower(): new_s += i.upper() else: new_s += i return new_s
Seems like cookies are disabled on this browser, please enable them to open this website
sWAP cASE
You are viewing a single comment's thread. Return to all comments →
def swap_case(s):