일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- list
- Github
- c#
- PySpark
- string
- dataframe
- gas
- google apps script
- hive
- Redshift
- Google Spreadsheet
- Python
- Excel
- Google Excel
- matplotlib
- numpy
- 파이썬
- SQL
- Kotlin
- PANDAS
- django
- Mac
- GIT
- Apache
- PostgreSQL
- Tkinter
- math
- array
- Java
- Today
- Total
목록Kotlin (32)
달나라 노트
Original source = play.kotlinlang.org/byExample/01_introduction/01_Hello%20world Kotlin의 filter function은 collection(list, set, map 등)을 filter할 때 사용합니다. fun main() { var list_numbers = listOf(1, -1, 2, -2, 3, -3, 4, -4, 5, -5) // 1 var list_positive = list_numbers.filter() { x -> x > 0 } // 2 var list_negative = list_numbers.filter { i -> i < 0 } // 3 println(list_numbers) println(list_positive)..
Original source = play.kotlinlang.org/byExample/01_introduction/01_Hello%20world Kotlin에는 Map이라는 collection이 있습니다. 결론부터 말하자면 Python의 dictionary와 비슷합니다. Key = Value가 하나의 쌍(pair)이 되고 이 쌍이 하나의 Map에 여러 개 존재할 수 있습니다. 다음 예시를 보시죠. var map_test: MutableMap = mutableMapOf( // 1 "Apple" to 1, "Strawberry" to 2, "Pineapple" to 3, "Orange" to 4 ) var map_test_2: Map = mapOf( // 2 1 to 10, 2 to 20, 3 to 18, ..
Original source = play.kotlinlang.org/byExample/01_introduction/01_Hello%20world Kotlin에도 Set이라는 자료형이 있습니다. Python과 동일하게 순서가 없으며 중복값이 허용되지 않는 collection이죠. Kotlin에서는 두 가지 종류의 set이 존재합니다. Mutable Set= 변경(요소 추가 제거 등)이 가능한 set Set = 변경이 불가하고 읽기만 가능한 set List를 생성할 때는 내장 method를 사용해야하는데 어떤 Method를 사용하는지에 따라 Mutable set인지 read-only set인지가 결정됩니다. mutableSetOf() -> mutable set 생성 setOf() -> read-only se..
Original source = play.kotlinlang.org/byExample/01_introduction/01_Hello%20world Kotlin에서도 python처럼 List라는 것이 존재합니다. 여러 요소들을 하나로 묶어서 나타내주는 것이며 순서가 존재합니다. 다만 Kotlin에서는 두 가지 종류의 list가 존재합니다. MutableList = 변경(요소 추가 제거 등)이 가능한 list List = 변경이 불가하고 읽기만 가능한 list List를 생성할 때는 내장 method를 사용해야하는데 어떤 Method를 사용하는지에 따라 Mutable list인지 read-only List인지가 결정됩니다. mutableListOf() -> mutable list 생성 listOf() -> r..