Mรณdulo 02 ยท Collections โ Lecciรณn 2 de 4 ยท ~8 min
Dictionaries
A dict is Python's dictionary โ literally
Swift's [String: Any] maps keys to values. Python's dict does the same job with lighter syntax:
walker = {"name": "Ana", "rating": 4.9}Keys and values go inside { }, separated by :, pairs separated by commas โ no let/var, no explicit key/value types.