You are viewing a single comment's thread. Return to all comments →
def solve(s): result = [] for i in s.split(): result.append(i.capitalize()) return ' '.join(result)
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 →
def solve(s): result = [] for i in s.split(): result.append(i.capitalize()) return ' '.join(result)