You are viewing a single comment's thread. Return to all comments →
def solve(s): lis = s.split(" ") s = lis[0].capitalize() for i in range(1, len(lis)): s += " " + lis[i].capitalize() return s
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 →