You are viewing a single comment's thread. Return to all comments →
def solve(s): s=s.split(" ") j=[]`` for i in s: if i.isalpha(): j.append(i.title()) else: j.append(i) return " ".join(i for i in j)
Seems like cookies are disabled on this browser, please enable them to open this website
Capitalize!
You are viewing a single comment's thread. Return to all comments →