i have a dictionary that stores key value pairs:
s={"one":["two","three","four"],"two":["five","six"],"three":["ten","nine"]}
i want to be able to to have a dictionary with the key "one" and the list
["test","succesfull"]
so the end result will be:
s={"one":["two","three","four"],"two":["five","six"],"three":["ten","nine"],"one":["test","succesfull"]}
i need to be able to have two of the same keys with different values and still be able to access either of them independently