Julia Language
ordböcker
Sök…
Använda ordböcker
Ordböcker kan konstrueras genom att passera det valfritt antal par.
julia> Dict("A"=>1, "B"=>2)
Dict{String,Int64} with 2 entries:
"B" => 2
"A" => 1
Du kan få poster i en ordlista som sätter nyckeln i fyrkantiga parenteser.
julia> dict = Dict("A"=>1, "B"=>2)
Dict{String,Int64} with 2 entries:
"B" => 2
"A" => 1
julia> dict["A"]
1
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow