일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- PySpark
- SQL
- GIT
- Apache
- Kotlin
- array
- string
- Google Excel
- dataframe
- PANDAS
- Github
- Tkinter
- Redshift
- list
- matplotlib
- gas
- google apps script
- math
- Excel
- Python
- numpy
- hive
- c#
- django
- Google Spreadsheet
- 파이썬
- Java
- PostgreSQL
- Mac
- Today
- Total
목록Python/Python Basic (82)
달나라 노트
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를 반환해줍니다.
3의 5승(3 ^ 5)을 영어로 표현하면 3 to the power of 5 입니다. 이렇게 거듭제곱을 표현하는 단어는 영어에서 power라는 단어인데 이 단어의 앞글자를 딴 method가 Python에 존재합니다. pow(n, m) .위처럼 사용할 수 있으며 n의 m승(n ^ m)을 의미합니다. print(pow(2, 3)) print(pow(3, 2)) print(pow(8, 2)) -- Result 8 9 64
Python list의 요소를 삭제할 수 있는 기능을 제공하는 method는 크게 4가지가 있습니다. 각 method의 특징은 다음과 같습니다. Method Description clear() list속 모든 요소를 삭제하여 비어있는 list로 변환시킴 (원본 list에서 삭제됨) remove(value) list속에서 value와 동일한 값을 삭제 (원본 list에서 삭제됨) pop(index) list속에서 명시된 index의 요소를 삭제 (원본 list에서 삭제됨) del list[index] list속에서 명시된 index의 요소를 삭제 (원본 list에서 삭제됨) 예시를 보면서 한번 알아봅시다. list_test = [5, 3, 1, 4, 2, 'a', 'bc', 'def'] list_test...
sorted, sort 모두 python의 list 속 요소들을 정렬할 수 있습니다. list_test = [5, 3, 1, 4, 2] list_test.sort(reverse=False) print(list_test) list_test = [5, 3, 1, 4, 2] list_test.sort(reverse=True) print(list_test) -- Result [1, 2, 3, 4, 5] [5, 4, 3, 2, 1] 먼저 sort method를 봅시다. 위처럼 어떤 list에 적용하여 sort가 적용된 list 자체를 정렬시켜버립니다. (sort method는 적용된 list 자체에 변형을 가하고 아무 return값이 없습니다.) 또한 reverse라는 option을 명시하여 오름차순/내림차순 정..