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