Let's say I have this function
def family():
S = dict(eyes='hazel', hair='ash')
N = dict(eyes='blue', hair='blonde')
K = dict(eyes='brown', hair='ash')
print()
family()
How do I make the function print based on the argument in the parentheses?
for example if i enter
family(S)
I want the S dictionary to print and so forth. How would I do this? Thanks