I am new to python and I am stuck in a situation here! I have stored strings in a python dictionary and when I try to extract it python is wrapping single quotes around the value and giving it back. How can I get rid of the single quotes?
Example code:
myDict = {"name":"Rosy", "class":"9", "likes":"cakes"}
myDict.get("name")
Output: 'Rosy'
Desired output: Rosy