BestPromptFinderBelow is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: Create a Python script to build a dictionary from string to string of the given samples. ### Input: Samples: apple->red banana->yellow cherry->red ### Output: def build_dictionary(samples): dictionary = {} for sample in samples: key, value = sample.split("->") dictionary[key] = value return dictionary samples = ["apple->red", "banana->yellow", "cherry->red"] dictionary = build_dictionary(samples) print(dictionary)
Find similar in the app →