일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- matplotlib
- Redshift
- math
- dataframe
- Tkinter
- Github
- PySpark
- Python
- GIT
- string
- PANDAS
- hive
- c#
- list
- django
- Excel
- Apache
- numpy
- Google Spreadsheet
- Kotlin
- PostgreSQL
- 파이썬
- Mac
- SQL
- google apps script
- gas
- Java
- Google Excel
- array
- Today
- Total
목록map (3)
달나라 노트
Original source = play.kotlinlang.org/byExample/01_introduction/01_Hello%20world Kotlin의 map function은 list의 각 요소에 어떤 로직을 적용하여 그 결과를 담은 list를 return합니다. fun main() { var list_numbers = listOf(1, -1, 2, -2, 3, -3, 4, -4, 5, -5) // 1 var list_doubled = list_numbers.map {x -> x * 2} // 2 var list_negative = list_numbers.map {y -> y * (-1)} // 3 var list_even = list_numbers.map {z -> z % 2 == 0 } //..
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, ..
Python의 map 함수는 반복 가능한 객체(iterable)를 받아서 각 요소에 어떠한 함수를 적용시켜서 반환합니다. map(function, iterable) map 함수는 첫 번째로 적용시킬 함수(function)를 인자로 받고, 두 번째로 iterable 객체를 받습니다. list_test = [1, 2, 3, 4, 5] def multiply(x): return x * 2 list_new = list(map(multiply, list_test)) print(list_new) - Output [2, 4, 6, 8, 10] 위 코드를 봅시다. 만약 list_test의 각각의 요소에 2를 곱한 list를 얻고싶다면 map함수를 사용할 수 있습니다. 이를 위해 multiply라는 함수를 선언하였습니다..