Julia Language
Dictionnaires
Recherche…
Utiliser des dictionnaires
Les dictionnaires peuvent être construits en lui passant un nombre quelconque de paires.
julia> Dict("A"=>1, "B"=>2)
Dict{String,Int64} with 2 entries:
"B" => 2
"A" => 1
Vous pouvez obtenir des entrées dans un dictionnaire en mettant la clé entre crochets.
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
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow