Appending element to a list value inside an associative array
Hi, I am trying to add an element into an associative array where the value is a list and the element needs to be added into the list inside associative array.Eg:cary = ["high schools" => {"Cary", "Green Hope", "Panther Creek"}, "population" => 116244, "state" => "NC", "weather" => "sunny"]; In this,1. How can I add a new entry to "high schools" list?2. How do I convert the "weather" value to list...