Answers for "iterate dictionary in swift with key value"

2

loop key value swift

func findDic(dict: [String: String]){
    for (key, value) in dict{
    print("\(key) : \(value)")
  }
}

findDic(dict: ["Animal":"Lion", "Bird":"Sparrow"])
//prints Animal : Lion 
         Bird : Sparrow
Posted by: Guest on August-05-2020

Code answers related to "iterate dictionary in swift with key value"

Code answers related to "Swift"

Browse Popular Code Answers by Language