How can I take a dictionary having one key-value pair and split the value as follows-
a={"description":"hello,hi,hey,hola"}
Now I would like to split the value through second comma and store the two values as(creating a new key-value pair in the dictionary)--
a={"description":"hello,hi","kkajan":"hey,hola"}