标签: python json
我需要在Python中将JSON字符串转换为JSON对象。
我的JSON字符串看起来像
'{"button1": "yes", "channel": "rules-test-channel"}'
我需要将此字符串转换为JSON对象,其中我的最终结果应该是
{"button1": "yes", "channel": "rules-test-channel"}