반응형
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 |
Tags
- Tkinter
- math
- 파이썬
- Excel
- numpy
- array
- PANDAS
- django
- Redshift
- list
- Apache
- Google Spreadsheet
- Google Excel
- Github
- GIT
- PySpark
- PostgreSQL
- matplotlib
- dataframe
- google apps script
- Kotlin
- Java
- Python
- gas
- SQL
- hive
- string
- c#
- Presto
Archives
- Today
- Total
목록do-while loop (1)
달나라 노트
Kotlin - Loops
Original source = play.kotlinlang.org/byExample/01_introduction/01_Hello%20world 먼저 for loop를 봅시다. fun main() { var colors = listOf("Blue", "Sky", "Black", "White", "Red") println(colors) for (i in colors) { println(i) } } -- Result [Blue, Sky, Black, White, Red] Blue Sky Black White Red for loop는 위처럼 사용할 수 있습니다. Java와 비슷합니다. * 참고 list를 생성하기 위해선 listOf method를 사용하면 됩니다. fun main() { var i = 0 wh..
Kotlin
2021. 3. 15. 03:31