python
count()는 파이썬의 내장 함수입니다. 문자열에서 주어진 요소의 총 개수를 반환합니다. 카운팅은 문자열의 처음부터 끝까지 시작됩니다. 검색을 시작하려는 위치에서 시작 및 끝 인덱스를 지정할 수도 있습니다.
이 Python 자습서에서는 다음을 배우게 됩니다.
파이썬 카운트 함수 구문:
string.count(char or substring, start, end)
count() 메서드는 정수 값, 즉 주어진 문자열에서 주어진 요소의 개수를 반환합니다. 주어진 문자열에 값이 없으면 0을 반환합니다.
다음 예제는 문자열에 대한 count() 함수의 작동을 보여줍니다.
str1 = "Hello World" str_count1 = str1.count('o') # counting the character “o” in the givenstring print("The count of 'o' is", str_count1) str_count2 = str1.count('o', 0,5) print("The count of 'o' usingstart/end is", str_count2)
출력:
The count of 'o' is 2 The count of 'o' usingstart/end is 1
다음 예는 시작/종료 인덱스를 사용하여 주어진 문자열과 에서 문자의 발생을 보여줍니다.
str1 = "Welcome to Guru99 Tutorials!" str_count1 = str1.count('u') # counting the character “u” in the given string print("The count of 'u' is", str_count1) str_count2 = str1.count('u', 6,15) print("The count of 'u' usingstart/end is", str_count2)
출력:
The count of 'u' is 3 The count of 'u' usingstart/end is 2
다음 예제는 start/endindex를 사용할 뿐만 아니라 주어진 문자열에서 부분 문자열의 발생을 보여줍니다.
str1 = "Welcome to Guru99 - Free Training Tutorials and Videos for IT Courses" str_count1 = str1.count('to') # counting the substring “to” in the givenstring print("The count of 'to' is", str_count1) str_count2 = str1.count('to', 6,15) print("The count of 'to' usingstart/end is", str_count2)
출력:
The count of 'to' is 2 The count of 'to' usingstart/end is 1
python
Pillow Python Imaging Library는 이미지 처리에 이상적입니다. 일반적으로 보관 및 일괄 처리 응용 프로그램에 사용됩니다. 물론, 생각할 수 있는 다른 용도로 자유롭게 사용할 수 있습니다. 라이브러리를 사용하여 다음을 수행할 수 있습니다. 썸네일 만들기 파일 형식 간 변환, 이미지 인쇄 Fet 히스토그램(자동 대비 향상에 이상적) 이미지 회전 흐림 효과와 같은 필터 적용 목차 이미지 처리 패키지 설치 이미지 처리 중 이미지 표시 추가 정보 이미지 처리 패키지 설치 Pillow를 설치하려면 원래 Pyth
Python 생태계에서 생각할 수 있는 거의 모든 것을 위한 패키지가 있으며, 모두 간단한 pip 명령으로 설치할 수 있습니다. 따라서 Python에도 이모티콘을 사용할 수 있는 패키지가 있다는 사실에 놀라지 마세요. 다음을 사용하여 이모티콘 패키지를 설치할 수 있습니다. $ pip3 install emoji 이 패키지를 사용하면 유니코드 이모티콘을 문자열 버전으로 또는 그 반대로 변환할 수 있습니다. import emoji result = emoji.emojize(Python is :thumbs_up:) print(result