반응형
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
- PySpark
- django
- PANDAS
- Kotlin
- array
- numpy
- Python
- GIT
- Google Spreadsheet
- Mac
- Tkinter
- matplotlib
- hive
- SQL
- Google Excel
- Java
- 파이썬
- google apps script
- Redshift
- string
- Apache
- Excel
- math
- dataframe
- list
- c#
- PostgreSQL
- gas
- Github
Archives
- Today
- Total
달나라 노트
Python Basic : list.index (list 속 특정 값의 index 얻기) 본문
Python/Python Basic
Python Basic : list.index (list 속 특정 값의 index 얻기)
CosmosProject 2021. 3. 30. 00:26728x90
반응형
notes = ['C', 'C#', 'D', 'D#', 'E', 'F', 'F#', 'G', 'G#', 'A', 'A#', 'B']
print(notes.index('A'))
print(notes.index('C'))
-- Result
9
0
list에 index(value)를 적용하면 value를 list내에서 찾아 그 value의 index를 반환해줍니다.
728x90
반응형
'Python > Python Basic' 카테고리의 다른 글
Python Basic : in, not in 연산자 (포함 연산자. 문자나 요소의 포함여부) (0) | 2021.06.11 |
---|---|
Python Basic : count (list 속의 특정 요소 개수 세기) (0) | 2021.06.02 |
Python Basic : pow (거듭제곱, power) (0) | 2021.03.30 |
Python Basic : list clear, remove, pop, del (list속 요소 삭제하기) (0) | 2021.03.29 |
Python Basic : sorted, sort (list의 요소 정렬하기) (0) | 2021.03.29 |
Comments