how can i use dictionaries python in my database 3f

Solutions on MaxInterview for how can i use dictionaries python in my database 3f by the best coders in the world

showing results for - "how can i use dictionaries python in my database 3f"
Daniela
14 Jan 2021
11
22
33
44
55
66
77
88
99
1010
1111
1212
1313
1414
1515
1616
1717
1818
1919
2020
2121
2222
2323
2424
2525
2626
2727
2828
2929
3030
3131
3232
3333
3434
3535
36datastore = { "office": {
37    "medical": [
38      { "room-number": 100,
39        "use": "reception",
40        "sq-ft": 50,
41        "price": 75
42      },
43      { "room-number": 101,
44        "use": "waiting",
45        "sq-ft": 250,
46        "price": 75
47      },
48      { "room-number": 102,
49        "use": "examination",
50        "sq-ft": 125,
51        "price": 150
52      },
53      { "room-number": 103,
54        "use": "examination",
55        "sq-ft": 125,
56        "price": 150
57      },
58      { "room-number": 104,
59        "use": "office",
60        "sq-ft": 150,
61        "price": 100
62      }
63    ],
64    "parking": {
65      "location": "premium",
66      "style": "covered",
67      "price": 750
68    }
69  }
70}
71