I want to convert the following string into dictionary without using eval()
function in Python 3.5.
d="{'Age': 7, 'Name': 'Manni'}";
Can anybody tell me the good way than using the eval()
function?
What I really want is a function which can directly convert a dictionary to a string.