in python, in order to access values in a dict, you have two ways:
dict['key']
dict.get('key')
dict('key')
will not work.
solved python3 programme raising TypeError: ‘dict’ object is not callable [closed]
in python, in order to access values in a dict, you have two ways:
dict['key']
dict.get('key')
dict('key')
will not work.
solved python3 programme raising TypeError: ‘dict’ object is not callable [closed]