Capitalize!

  • + 0 comments

    def solve(s): word = s.split(' ') string = "" for name in word: string = string + name.capitalize()+" "