I want to create a new dictionary list, 'path: value' to be looped for each user and appended under each item in the user list. The end result would l ...
I want to create a new dictionary list, 'path: value' to be looped for each user and appended under each item in the user list. The end result would l ...
How can I type hint a dictionary where the key is a specific tuple and the value is known? For example I want to type hint a dict like this: The u ...
Consider following list all_values = [ {"a": "first_type"}, {"a": "second_type"}, {"a": "second_type"}, {"a": "third_type"} ] I would l ...
I have the following data: I would like to transform it into a dataframe like the following: I tried the following: But im getting: ...
I want to migrate my xamarin application to the new MAUI project template. In Xamarin, I have a page view (xaml) with a map control bound to the viewm ...
i have one json file which has this path: and i want ['1'] dynamic so that i can add more status like: i hve tried function but it didnt work fo ...
I have a 3-level nested dictionary whose structure is as follows: Dictionary 1: Keys: 1, 2, 3, 4. 1 stands for winter, 2 for spring, 3 for summer and ...
I have a Map<String,String> from this map is it possible to extract keys in a list of Strings {"BusDetails0","BusDetails1"}? please help tha ...
Assuming I have a dictionary similar to this with variables IDs and PosX: I want to iterate trough all of it and create a new dictionary storing th ...
So I have this params: And I want to be able to search for quantity and get the value 1 or the args key and get its doctionary ({'id': 12345678, 'a ...
I got a dict of names as keys and formated dates as values, I managed to have the list of these dates sorted, but I dont know how to now sort my dict ...
Problem Statement: A user will enter a property address or Lat/long based on that we need an image of Google Maps to print on a document for the end u ...
I have to use element 0 of words as a dictionary key and set the value of to_nato for that key to words element 1. I have this: nato-alphabet is a ...
If I have the following dictionary: How can I create the variables where org_1 is the object created by reading '../cellbender/SAM24425933_cellb ...
I have a dictionary called to_nato that looks like this: I need to write loop to iterate over a string "stateofny" and for each letter, if it is in ...
I am making a program to send people happy birthday emails on their birthday. i keep getting the error in the title. From every question i have read o ...
I am building a for loop in which I want to construct a dictionary with 2 dataframes. My loop is creating dataframes with 1 column and 24 rows for eac ...
I have an ArrayList of String Array and the 2nd element of every String Array contains a name. I want to create a Map where it's Key is the name and V ...
I am learning python, and I have two json files. The data structure in these two json files are different structures. I start by importing both of th ...
I hope to print flist(a dictionary)'s corresponding values(6 values in total) based on the all keys(6 keys in total) in a tuple, but how? The 6 keys ...