在 Python 中使用 Quandl 仅获取一个值
get only a value with Quandl in Python
我正在与 Quandl 合作。我在文档中进行了搜索,但我找不到它
import quandl
quandl.ApiConfig.api_key = 'PNPLwChDhr6UMUVvfc5h'
gold = quandl.get('LBMA/GOLD', rows=1, column_index='2')
print(gold)
当我运行它时,控制台显示:
USD (PM)
Date
2020-08-13 1944.25
但是,我只需要 1944.25
将其与 if
语句进行比较。
如何只打印特定值?
代码:
import quandl
quandl.ApiConfig.api_key = 'your-api-key'
gold = quandl.get('LBMA/GOLD', rows=1, column_index='2')
print(gold.iloc[0].values[0])
输出:
1944.75
我正在与 Quandl 合作。我在文档中进行了搜索,但我找不到它
import quandl
quandl.ApiConfig.api_key = 'PNPLwChDhr6UMUVvfc5h'
gold = quandl.get('LBMA/GOLD', rows=1, column_index='2')
print(gold)
当我运行它时,控制台显示:
USD (PM)
Date
2020-08-13 1944.25
但是,我只需要 1944.25
将其与 if
语句进行比较。
如何只打印特定值?
代码:
import quandl
quandl.ApiConfig.api_key = 'your-api-key'
gold = quandl.get('LBMA/GOLD', rows=1, column_index='2')
print(gold.iloc[0].values[0])
输出:
1944.75