有一个熊猫函数可以应用于熊猫数据帧中的DateTime索引。date = dataframe.index #date is the datetime indexdate = dates.strftime('%Y-%m-%d') #this will return you a numpy array, element is string.dstr = date.tolist() #this will make you numpy array into a list列表内的元素:u'1910-11-02'您可能需要替换“ u”。我可能应该在以前的函数中添加一些其他参数。