Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

문장의 단어 수를 세는 Python 프로그램


이 기사에서는 주어진 문제 설명을 해결하기 위한 솔루션과 접근 방식에 대해 알아볼 것입니다.

문제 설명

우리는 문장을 받았고 문장의 단어 수를 계산해야 합니다.

여기서 우리는 두 가지 접근 방식에 대해 논의할 것입니다 -

접근법 1 - split() 함수 사용

예시

test_string = "Tutorials point "
res = len(test_string.split())
print ("The number of words in string are : " + str(res))

출력

The number of words in string are : 2

접근법 2 - strip() 및 isalpha() 함수 사용

예시

import string
test_string = "Tutorials point "
res = sum([i.strip(string.punctuation).isalpha() for i in test_string.split()])
print ("The number of words in string are : " + str(res))

출력

The number of words in string are : 2

결론

이 기사에서 우리는 문장에서 단어를 세는 접근 방식에 대해 배웠습니다.