在mircopython里面b"{'led': 1, 'temp': 0, 'sign': 'publish_ban', 'hum': 0}"转化为字典
时间: 2023-08-06 08:13:39 浏览: 62
在MicroPython中,可以使用`ujson`库将JSON格式的字符串转换为字典。首先需要将字节串转换为字符串,然后再使用`ujson.loads()`函数进行转换。下面是一段示例代码:
```python
import ujson
# 将字节串转换为字符串
data = b"{'led': 1, 'temp': 0, 'sign': 'publish_ban', 'hum': 0}".decode()
# 将字符串转换为字典
d = ujson.loads(data)
print(d)
```
输出结果为:
```python
{'led': 1, 'temp': 0, 'sign': 'publish_ban', 'hum': 0}
```
阅读全文