You are viewing a single comment's thread. Return to all comments →
def camelcase(s): # Write your code here wordCount = 1 for i in s: if "A" <= i <= "Z": wordCount += 1
return wordCount
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 →
def camelcase(s): # Write your code here wordCount = 1 for i in s: if "A" <= i <= "Z": wordCount += 1