일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 다트
- 콜렉션
- Yocto
- 코틀린
- kotlin
- Android
- ML
- animation
- pushnamed
- map
- Flutter
- 클래스
- crawler
- text
- 크롤러
- import
- textstyle
- package
- List
- 파이썬
- set
- Collection
- 함수
- variable
- python
- 플러터
- Class
- DART
- function
- 웹크롤러
- Today
- Total
목록분류 전체보기 (127)
조용한 담장
python 3.6 이후에는 f-String 을 쓰면 좋다. 이전엔 % format >>> world = "world" >>> "Hi, %s!" % world 'Hi, world!' >>> new = "new" >>> "Hi, %s %s!" % (new, world) 'Hi, new world!' 문자열과 변수가 따로 놀아 한눈에 안들어온다. 변수가 많아지면 더 복잡해진다. str.format() >>> "Hi, {} {}".format(new, world) 'Hi, new world' >>> "Hi, {1} {0}".format(new, world) 'Hi, world new' 여전히 따로 놀아서 보기 어렵다. >>> "Hi, {string1} ..
코틀린의 collection 의 Write Operations 에 대해 살펴보자. 원문 https://kotlinlang.org/docs/reference/collection-write.html 을 보며 정리. Mutable collections 의 내용을 변경하는 동작을 살펴보자. Adding elements add() 를 사용한다. val numbers = mutableListOf(1, 2, 3, 4) numbers.add(5) println(numbers) // output: // [1, 2, 3, 4, 5] addAll()는 argument collection 의 모든 element 를 추가한다. argument 로는 Set, List 외에도 Iterable, Sequence, Array 가 올 ..
코틀린의 collection 의 Aggregate Operations 에 대해 살펴보자. 원문 https://kotlinlang.org/docs/reference/collection-aggregate.html을 보며 정리. min() and max() return the smallest and the largest element respectively; average() returns the average value of elements in the collection of numbers; sum() returns the sum of elements in the collection of numbers; count() returns the number of elements in a collection; v..
코틀린의 collection 의 Ordering 에 대해 살펴보자. 원문 https://kotlinlang.org/docs/reference/collection-ordering.html 을 보며 정리. element 의 순서는 특정 collection type 에 따라서는 중요한 부분이다. 예를 들어 같은 element 를 가진 두개의 리스트는 element 의 order 에 따라 동일하지 않게 된다. 코틀린에서 object 의 order 는 다양한 방법으로 정의될 수 있다. natural order 는 Comparable interface 의 상속자를 위해 정의 되었다. 특별한 order 가 지정되지 않으면 기본으로 사용된다. Numeric type 은 전통적인 수 기반 순서(numerical orde..