I declared this dictionary:
person ={'name':[],'age':[], 'adress':[]}
Is there a function that allows to check if it has values or not?
For example:
person = { 'name':[], 'age':[], 'adress':[] }
--> returns empty and if
person = { 'name':['Paul'], 'age':[25], 'adress':['xxxxx'] }
--> returns not empty