def eCount (s):
"""Count the e's in a string, using for loop.
Params: s (string)
Returns: (int) #e in s, either lowercase or uppercase
"""
# INSERT YOUR CODE HERE, replacing 'pass'
教授要求不要改變上面的任何內容。 我試圖做到:在python中使用for循環來計算字符串中的字符(包括大寫和小寫)
count = 0
for e in s:
count +=1
return count
它提供:
(executing lines 1 to 17 of "e_count_103.py")
15
'爲電子商務在S:'沒有做什麼,你認爲它。嘗試在每次迭代中打印「e」的值。另外,你還沒有真正問過問題。 – roganjosh
'return s.lower()。count('e')'或'return s.upper()。count('E')'試試這個 –