【发布时间】:2014-10-02 18:12:57
【问题描述】:
json_data = {"fruits": ["apple", "banana", "orange"],"vegetables":["tomatoe", "cucumber", "potato"]}
如何在不包含数字键的情况下以数字方式访问我的数组?
例如:
json_data[0][0] #result should equal "apple"
【问题讨论】:
标签: python json python-3.x