How to iterate over map keys and values in Kotlin

3 Answers

0 votes
fun main() {
    val map = mapOf("key1" to "value1", "key2" to "value2", "key3" to "value3")

    for ((key, value) in map) {
        println("Key: $key, Value: $value")
    }
}
   
      
/*
run:

Key: key1, Value: value1
Key: key2, Value: value2
Key: key3, Value: value3
  
*/

 



answered Apr 18, 2025 by avibootz
0 votes
fun main() {
    val map = mapOf("key1" to "value1", "key2" to "value2", "key3" to "value3")

    map.forEach { key, value -> println("$key -> $value") }
}
   
      
/*
run:

key1 -> value1
key2 -> value2
key3 -> value3
  
*/

 



answered Apr 18, 2025 by avibootz
0 votes
fun main() {
    val map = mapOf("key1" to "value1", "key2" to "value2", "key3" to "value3")

    map.entries.forEach { println("${it.key} ${it.value}") }
}
   
      
/*
run:

key1 value1
key2 value2
key3 value3
  
*/

 



answered Apr 18, 2025 by avibootz

Related questions

1 answer 97 views
1 answer 107 views
2 answers 95 views
3 answers 112 views
3 answers 133 views
133 views asked Dec 14, 2024 by avibootz
...