We can convert a dict into string but can we convert string back to dict ??
code
c={'a':3,'b':445}
d=str(c)
here can i replace d to type dict.
I want to take dict in form of string and encrypt all numeric digits at once using a key and retain back the dictionary with encrypted numbers.