Contact: aviboots(AT)netvision.net.il
39,872 questions
51,796 answers
573 users
var dic = ["swift": [5, 7, 0, 1], "c++": [8, 9, 4, 3], "python": [3, 2, 0, 5]] print(dic) print(dic["swift"]!) /* run: ["python": [3, 2, 0, 5], "c++": [8, 9, 4, 3], "swift": [5, 7, 0, 1]] [5, 7, 0, 1] */