I wonder if there is a way of implement hashmap as in java but doing in Python:
for example:
if in java I would do :
HashMap<String, String> map = new HashMap<>();
and then I can put data into the map:
map.put('master' , 'of puppets');
How can I accomplish the same in Python?