Найти - Пользователи
Полная версия: Как сохранить формат ячеек при загрузке в Pandas из excel
Начало » Центр помощи » Как сохранить формат ячеек при загрузке в Pandas из excel
1
omelsn
Всем привет при загрузке в Pandas датафрейма формат даты меняется с такого 2023-09-19
на такой 2023-09-19 00:00:00
ZerG
Привет
Попробуй strftime
что-то типа
 date_columns = excel_data_df.iloc[:, 1:].select_dtypes(include=[pd.DatetimeDtype()])
excel_data_df[date_columns.columns] = date_columns.apply(lambda x: x.dt.strftime('%Y-%m-%d'))
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB