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