dictanary

Solutions on MaxInterview for dictanary by the best coders in the world

showing results for - "dictanary"
Clary
20 Apr 2018
1#pet dictionary 
2
3cats = {
4  0: {
5    
6    'desc': 'redacted',
7    
8    'age': 'redacted',
9    
10    'attitude': ['redacted','redacted','redacted']
11  }, 
12  
13  1: {
14    
15    'desc': 'redacted',
16    
17    'age': 'redacted',
18    
19    'attitude': ['redacted']
20    
21  }, 
22  2: {
23    
24    'desc': 'redacted',
25    
26    'age': 'redacted',
27    
28    'attitude': ['redacted','redacted','redacted']
29  },
30  
31  3: {
32    
33    'desc': 'redacted',
34    
35    'age': 'redacted',
36    
37    'attitude': ['redacted','redacted','redacted']
38  }, 
39  
40}
41
42dogs = {
43  0: {
44    
45  'desc': 'redacted',
46  
47  'age': 'redacted',
48  
49  'attitude': ['redacted','redacted']
50  },
51  
52  1: {
53  'desc': 'redacted',
54  
55  'age': 'redacted',
56  
57  'attitude': 'redacted'
58  },
59  
60  2: {
61  'desc': 'redacted',
62  
63  'age': 'redacted',
64  
65  'attitude': ['redacted','redacted','redacted']
66  }
67}