반응형
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 |
Tags
- Kotlin
- GIT
- Excel
- Redshift
- Python
- google apps script
- SQL
- Google Excel
- matplotlib
- hive
- Tkinter
- string
- Google Spreadsheet
- django
- Mac
- PostgreSQL
- Apache
- numpy
- gas
- list
- math
- c#
- 파이썬
- PANDAS
- Github
- PySpark
- dataframe
- array
- Java
Archives
- Today
- Total
달나라 노트
Python Basic : count (list 속의 특정 요소 개수 세기) 본문
728x90
반응형
list.count(x)
list에 count method를 적용시키면 count의 parameter로 전달된 값이 list 속에서 몇개가 존재하는지 세어줍니다.
list_test = [1, 1, 2, 2, 2, 3, 3, 10, 5, 5, 5, 5, 8, 8, 7, 7, 'a', 'a', 'bb', 'bb', 'bb', '\n']
cnt_5 = list_test.count(5) # 1
cnt_a = list_test.count('a') # 2
cnt_line_break = list_test.count('\n') # 3
cnt_bb = list_test.count('bb') # 4
cnt_c = list_test.count('c') # 5
print(cnt_5)
print(cnt_a)
print(cnt_line_break)
print(cnt_bb)
print(cnt_c)
- Result
4
2
1
3
0
1. list_test에서 5가 몇 개나 있는지 return합니다.
2. list_test에서 a가 몇 개 존재하는지 return합니다.
3. list_test에서 줄바꿈(\n)이 몇 개나 존재하는지 return합니다.
4. list_test에서 bb가 몇 개 존재하는지 return합니다.
5. list_test에서 c가 몇개나 존재하는지 return합니다. list_test에서 c는 존재하지 않으므로 0이 return됩니다.
728x90
반응형
'Python > Python Basic' 카테고리의 다른 글
Python Basic : input (User input value 받아오기) (0) | 2021.06.11 |
---|---|
Python Basic : in, not in 연산자 (포함 연산자. 문자나 요소의 포함여부) (0) | 2021.06.11 |
Python Basic : list.index (list 속 특정 값의 index 얻기) (0) | 2021.03.30 |
Python Basic : pow (거듭제곱, power) (0) | 2021.03.30 |
Python Basic : list clear, remove, pop, del (list속 요소 삭제하기) (0) | 2021.03.29 |
Comments