• + 0 comments
    def camelcase(s):
        # Write your code here
        count=0
        for char in s: 
            if char.isupper(): 
                count+=1
        return count+1