w*s 发帖数: 7227 | 1 x = pd.DataReader("xom", "yahoo", start, end)['Low']
print x.idxmin()
怎么返回int ?
谢谢各位! | l*******m 发帖数: 1096 | 2 pd.DataReader("xom", "yahoo", start, end).reset_index()['Low']
【在 w*s 的大作中提到】 : x = pd.DataReader("xom", "yahoo", start, end)['Low'] : print x.idxmin() : 怎么返回int ? : 谢谢各位!
| w*s 发帖数: 7227 | 3 太牛了,谢谢!
【在 l*******m 的大作中提到】 : pd.DataReader("xom", "yahoo", start, end).reset_index()['Low']
|
|