You are viewing a single comment's thread. Return to all comments →
def swap_case(s): res = "" for c in s: if c.isalpha and c.islower(): res += c.upper() elif c.isalpha and c.upper(): res += c.lower() else: res += c return res
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 →