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