본문 바로가기
Python/왕초보를 위한 파이썬

Python 실습_Alphabet count

by 가므자 2012. 4. 10.
Alphabet count
Create a function called getAlphaCount() that accepts a letter and a string. The function should return the number of times that the letter appears in the string.

    Results
    Call Expected Received Correct
    getAlphaCount('a', 'aAaAaAbbb') 6 6 true
    getAlphaCount('b','bigboy') 2 2 true
    getAlphaCount('c','cat') 1 1 true
    getAlphaCount('b','cat') 0 0 true
     

    'Python > 왕초보를 위한 파이썬' 카테고리의 다른 글

    Python 실습_After Index  (0) 2012.04.10
    Python 실습_Character Replacement  (0) 2012.04.10
    Python 실습_Capitalize Even Items  (0) 2012.04.10
    Python 실습_Range Step  (0) 2012.04.10
    7.4. 개체 속의 개체  (0) 2012.04.06

    댓글