package main
import "fmt"
func main(){
sample := map[string]string{
"key1":"value1",
"key2":"value2",
"key3":"value3",
}
for i := 0;i
The above go code just print a map[string]string three times.
I expect it to a fixed output,but it shows as the following:
map[key3:value3 key2:value2 key1:value1]
map[key1:value1 key3:value3 key2:value2]
map[key2:value2 key1:value1 key3:value3]
It varies!
while in python:
#!/bin/env python
#encoding=utf8
sample = {
"key1":"value1",
"key2":"value2",
"key3":"value3",
}
for i in range(3):
print sample
OutPut:
{'key3': 'value3', 'key2': 'value2', 'key1': 'value1'}
{'key3': 'value3', 'key2': 'value2', 'key1': 'value1'}
{'key3': 'value3', 'key2': 'value2', 'key1': 'value1'}`
Your Answer
0 answers
Hot tools Tags
Hot Questions
Oracle: Combine multiple results in a subquery into a single comma-separated value [duplicate]
2025-12-30 15:22:08
Oracle Update Query using Join
2025-12-30 15:01:13
How to create an std::function from a move-capturing lambda expression?
2025-12-30 14:43:12
What's the difference between eval, exec, and compile?
2025-12-30 14:22:20
ExecutorService, how to wait for all tasks to finish
2025-12-30 14:02:07
Popular tool
vc9-vc14 (32+64 bit) runtime library collection (link below)
Download the collection of runtime libraries required for phpStudy installation
VC9 32-bit
VC9 32-bit phpstudy integrated installation environment runtime library
PHP programmer toolbox full version
Programmer Toolbox v1.0 PHP Integrated Environment
VC11 32-bit
VC11 32-bit phpstudy integrated installation environment runtime library
SublimeText3 Chinese version
Chinese version, very easy to use
Hot Topics
Douyin level price list 1-75
20416
7
20416
7
wifi shows no ip assigned
13574
4
13574
4






