如何将Python中OHLC数据帧中的日期条目转换为字符串,以便使用日期时间模块检查日期


In[118]: Date.iloc[0].to_string()
Out[118]: 'Date    1997-09-09'

如何从字符串中消除"Date"以便使用日期时间模块

通过index=False:

Date.iloc[0].to_string(index=False)
Date.iloc[0].to_string()[-10:]
Out[129]: '1997-09-09'

尝试:

Date.iloc[0, 0].strftime('%Y-%m-%d')

考虑tidx

tidx = pd.date_range('2000-01-01', periods=2)

都输出相同的内容。

print(tidx.strftime('%Y-%m-%d'))
print(tidx.to_series().dt.strftime('%Y-%m-%d').values)
['2000-01-01' '2000-01-02']
['2000-01-01' '2000-01-02']

相关内容

  • 没有找到相关文章

最新更新