# It would have the following syntax
dict_names = {'d1' : {'name':'bob', 'place':'lawn', 'animal':'man'},
'd2' : {'name':'spot', 'place':'bed', 'animal':'dog'}}
# You can then look things up like
>>> dict_names['d1']['name']
'bob'
please subscribe my channel - https://bit.ly/2Me2CfB
import PyDictionary
print("
----------------DICTIONARY----------------
")
word = input("ENTER WORD : ")
meaning = PyDictionary.PyDictionary.meaning(word)
print("MEANING :", meaning)
dict_names = {'d1' : {'name':'bob', 'place':'lawn', 'animal':'man'},
'd2' : {'name':'spot', 'place':'bed', 'animal':'dog'}}