Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,959 questions

51,901 answers

573 users

How to create key value dictionary in Go

1 Answer

0 votes
package main

import "fmt"

func main() {
    dict := map[int]string {
	   4: "go",
	   6: "c",
	   1: "c++",
	   5: "java" }
    
    fmt.Printf("key values:\n");
    for key, value := range dict {
        fmt.Printf("%d - %s\n", key, value)
    }
    
    fmt.Printf("\nkeys:\n");
    for key := range dict {
        fmt.Printf("%d\n", key)
    }
    
    fmt.Printf("\nvalues:\n");
    for _, value := range dict {
        fmt.Printf("%s\n", value)
    }
}




/*
run:

key values:
4 - go
6 - c
1 - c++
5 - java

keys:
4
6
1
5

values:
c
c++
java
go

*/

 



answered Dec 10, 2022 by avibootz

Related questions

1 answer 210 views
210 views asked Nov 4, 2020 by avibootz
1 answer 153 views
153 views asked Aug 7, 2020 by avibootz
3 answers 376 views
1 answer 187 views
187 views asked Nov 4, 2020 by avibootz
1 answer 177 views
177 views asked Mar 15, 2020 by avibootz
...