Capitalize!

  • + 1 comment

    def solve(s): store=[] words = s.split(" ") for i in words: store.append(i.capitalize()) x=" ".join(store) return x Use this if u r facing any problem in this problem.