Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialswiftfun
4,039 Pointsprintln a dictionary
I created the following array of dictionaries
["title": "Magic", "artist": "Coldplay", "album": "Ghost Stories" ], ["title": "Summertime", "artist": "VybzCartel", "album": "Vybz Cartel Album" ], ]
I am able to call a dictionary value using the following:
My question is, how can a create a println of the previous line?
println("The artist is (songs[1]["artist"])") does not seem to work.
1 Answer
Logan R
22,989 PointsYour array is different, but I am pretty sure the same principle will apply. I am not sure if this will answer your question or not and the challenge you have linked too doesn't have anything about songs, but still.
Array["key"]
So in the case:
let currencies = ["US": "Dollar", "UK": "Pound", "JP": "Yen"]
let ukCurrency = currencies["UK"]