반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- SQL
- PostgreSQL
- matplotlib
- Kotlin
- list
- PySpark
- array
- GIT
- Java
- Tkinter
- django
- Python
- Google Excel
- string
- dataframe
- Mac
- hive
- gas
- 파이썬
- Redshift
- Excel
- Google Spreadsheet
- numpy
- Apache
- google apps script
- PANDAS
- c#
- Github
- math
Archives
- Today
- Total
목록count text (1)
달나라 노트
Python Basic : count() (특정 글자 수 세기)
count() method는 어떤 string 속에서 원하는 텍스트가 몇개나 포함되어있는지를 return해줍니다. Syntax string.count(text) count() method는 string에 적용할 수 있는 method입니다. - text string에서 개수를 셀 문자입니다. 예시를 보시죠. str_test = 'apple_banana_pineapple_watermelon' val_cnt = str_test.count('a') print(val_cnt) -- Result 6 - str_test.count('a') str_test 변수에 있는 문자열에서 a라는 텍스트가 몇개 존재하는지 세라는 의미입니다. apple_banana_pineapple_watermelon a는 빨간색 bold체로 표..
Python/Python Basic
2022. 10. 24. 00:12