You are viewing a single comment's thread. Return to all comments →
def camelcase(s): # Write your code here count=0 for char in s: if char.isupper(): count+=1 return count+1
Seems like cookies are disabled on this browser, please enable them to open this website
CamelCase
You are viewing a single comment's thread. Return to all comments →