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 trial
Rohan Bedi
1,286 PointsIs it possible to store a number of dictionaries,for example say 4 dictionaries,in a single dictionary.If yes,how?
Is it possible to store a number of dictionaries,for example say 4 dictionaries,in a single dictionary.If yes,how?
2 Answers
Steve Hunter
57,712 PointsHi Rohan,
Yes, you can store dictionaries in a dictionary. But each will need an identifiable key to access the dictionary as the value.
Have a look at this post which describes some of that behaviour.
I think the value part of the dictionary can contain anything as long as you declare the data types properly. Each stored value must be identifiable to a unique key. The Swift documentation has some good info on this.
I hope that helps,
Steve.
Rohan Bedi
1,286 PointsIt did help me!Thanks :)
Steve Hunter
57,712 Points