Parsing json
Convert the input string into a different data type as shown in the example.
Sample Code:
def parseObject(inp):
# Enter your logic here...
Examples:
Input: {'meow': 'woof'}
Output: {'meow': 'woof'}
Explanation: Dict is no longer in string format.
Input: ['Ka','me','ha','me','ha!']
Output: ['Ka','me','ha','me','ha!']
Explanation: Dict is no longer in string format.