You are viewing a single comment's thread. Return to all comments →
def capitalize(string): l=string.split(" ") a = [i.capitalize() for i in l] return " ".join(a)
This is what i did, which is similar to yours.
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 →
This is what i did, which is similar to yours.