Skip to content

Tag: dictionary

How to use dictionary in oop to store data

i want to ask you i want to store all informations in dictionary for this code but i can’t i know that something i did wrong.I like to store informations from Customers if issue take a hourly , monthly or daily it is on BikeRental request bikes what i tried by far is any way? Answer If you just wanted

Dictionary making weird key:value pairs

I want to make a simple calculator, where you just type in something like “2+2*2” and it calculates the answer. First step was to find, and cut out the individual numbers, which I tried doing below. But when I input: I don’t get the expected output of: But rather: I’m still very new to…

Usage of a dictionary, Right or wrong?

I’m creating a car sales program and need to use a dictionary, I have a basic understanding of them. Would it be efficient to hold the car name as a string for the key, then store the relevant cars selling price in the values through a list? for example, Can this work? Is there a better usage for the di…

How to remove array from values in a dictionary

I have the following dictionary But I’d like to remove the lists so it looks like this: Is there a simple way to do this? I think I might be able to iterate through and remove the list. Thanks Answer In order to produce the required output you will need a list (set) of keys that should not be modified.

Python: Safe dictionary access with lists?

Is there an exception free way to access values from a dictionary containing lists. For example, if I have: How do I access the path data[‘object_1’][‘object_2’][‘list’][0][‘property’] safely(i.e. return some default value if not possible to access without throw…