How to get the first element in a dictionary with Swift

3 Answers

0 votes
let dict = [
       "swift": 5,
       "c": 1,
       "java": 4,
       "c++": 8 ]
 
var result = dict.first!

print(result)
 
 
 
 
/*
run:
 
(key: "swift", value: 5)
 
*/

 



answered Jun 15, 2023 by avibootz
0 votes
let dict = [
       "swift": 5,
       "c": 1,
       "java": 4,
       "c++": 8 ]
 
print(dict)

print(Array(dict.values)[0]) 
print(Array(dict.keys)[0]) 


 
 
 
/*
run:
 
["java": 4, "c++": 8, "swift": 5, "c": 1]
4
java
 
*/

 



answered Jun 15, 2023 by avibootz
0 votes
let dict = [
       "swift": 5,
       "c": 1,
       "java": 4,
       "c++": 8 ]
 
print(dict)

print(dict.values.first!) 
print(dict.keys.first!) 


 
 
 
/*
run:
 
["c++": 8, "c": 1, "java": 4, "swift": 5]
8
c++
 
*/

 



answered Jun 15, 2023 by avibootz

Related questions

1 answer 250 views
2 answers 277 views
1 answer 200 views
1 answer 152 views
2 answers 188 views
...