【发布时间】:2018-09-24 10:51:04
【问题描述】:
如何仅打印/访问“时间序列(每日)”的日期?
我尝试了以下方法,但出现关键错误:
for date in range(0,2):
print(date)
print(tickerData['Time Series (Daily)'][date])
这是嵌套字典:
{
"Meta Data": {
"1. Information": "Daily Prices (open, high, low, close) and Volumes",
"2. Symbol": "NASDAQ Index",
"3. Last Refreshed": "2018-04-13",
"4. Output Size": "Compact",
"5. Time Zone": "US/Eastern"
},
"Time Series (Daily)": {
"2018-04-13": {
"1. open": "7179.6201",
"2. high": "7183.6201",
"3. low": "7078.1401",
"4. close": "7106.6499",
"5. volume": "1743640000"
},
"2018-04-12": {
"1. open": "7112.0200",
"2. high": "7166.0000",
"3. low": "7105.0898",
"4. close": "7140.2500",
"5. volume": "2021110000"
}}}
【问题讨论】:
标签: python-3.x dictionary nested