■ str 클래스의 count 메소드를 사용해 문자열 개수를 세는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
text = "python is powerful" print(text.count("p")) # count(keyword) print(text.count("p", 5)) # count(keyword, start) print(text.count("p", 0, -1)) # count(keyword, start, end) """ 2 1 2 """ |