how to make dictionary in python

Solutions on MaxInterview for how to make dictionary in python by the best coders in the world

showing results for - "how to make dictionary in python"
Sophie
08 Nov 2016
1my_dict = {'key': 'value'}
Francesco
23 May 2020
1thisdict = {
2  "key1" : "value1"
3  "key2" : "value2"
4  "key3" : "value3"
5  "key4" : "value4"
6}