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.

40,025 questions

51,979 answers

573 users

How to get the values of a dictionary in Swift

2 Answers

0 votes
var dict:[String:Int] = ["Swift": 3, "Java": 9, "C": 5, "Python": 1] 
 
print(dict.values)
 

 
 
/*
run:
 
[9, 3, 5, 1]
 
*/


  
  

 



answered Jun 16, 2023 by avibootz
0 votes
var dict:[String:Int] = ["Swift": 3, "Java": 9, "C": 5, "Python": 1] 
 
for val in dict.values {
    print(val)
}
 

 
 
/*
run:
 
1
9
3
5
 
*/


  
  

 



answered Jun 16, 2023 by avibootz

Related questions

1 answer 157 views
1 answer 180 views
180 views asked Sep 19, 2020 by avibootz
2 answers 225 views
3 answers 191 views
...