guys, I have such question. Suppose that I have a dictionary/list that inside contains other dictionary/list and so on.
Example:
dict = {
'Domains':{
'Web':['JavaScript','PHP','Python'],
'Mobile':{'Android':'Java','iOS':['Swift','Objective-C'],'Windows Phone':'C#'},
'Desktop':['C#','Java','Python']}
}
And i want to find 'iOS' list in this dictionary. There is a way to call a function that will display value of an element if this element exist. Example:
print(function('iOS'))
['Swift','Objective-C']