Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,879 questions

51,805 answers

573 users

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 164 views
2 answers 241 views
1 answer 170 views
1 answer 133 views
2 answers 159 views
...