Python에서 txt 파일의 단어 수를 계산하려면 rstrip 함수와 len 함수를 사용할 수 있습니다.
White Night Walk.txt의 단어 수는 다음과 같이 계산됩니다.
file_name = '白夜行.txt' try: with open(file_name, encoding='utf8') as file_obj: #由于书名不是英文,要加上 encoding='utf8' contents = file_obj.read() except FileNotFoundError: msg = 'Sorry, the file' + file_name + ' does not exist.' print(msg) else: words = contents.rstrip() num_words = len(words) print('The file ' + file_name + ' has about ' + str(num_words) + ' words.')
결과:
The file 白夜行.txt has about 487761 words.
더 많은 Python 관련 기술 기사를 보려면 Python Tutorial 칼럼을 방문하여 알아보세요!
위 내용은 파이썬에서 txt 파일의 단어 수를 계산하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!