有如下 Python 代码:
import json
Data1 = '{"a":1,"b":2,"c":3,"d":4,"e":5}';
text = json.loads(Data1)
print(text)
输出的 text 是 dict 类型数据。 ( )