I'm trying to create a dictionary of built in methods but I'm getting the output as shown in below. Why is this happening? I just want to understand that.
>>>
>>> dict = {'a': print('avc'), 'b': print('bbbb'), 'c': print('aaa')}
avc
bbbb
aaa
>>> dict
>>> {'a': None, 'b': None, 'c': None}
>>>
Also, if someone is trying to understand where I'm coming from then they can have a look at this question: Link to the question I was trying to solve when I thought the above would be useful.