如何在python中将数字年转换为日 - 月 - 年格式?

时间:2017-07-24 17:52:12

标签: python-3.x

我有一个名为construction_year的列作为数字(int)年。我想在python中将其转换为dd-mm-yyyy格式。我尝试过datetime和pandas to_datetim并转换时间戳提取格式但是徒劳无功。

Ex:我喜欢2013年(int)我希望在python 3.x中将其转换为01-01-2013。

1 个答案:

答案 0 :(得分:0)

进入字符串

如果要将其转换为字符串,只需使用:

>>> convert_string(2013)
'01-01-2013'

然后像:

一样使用它
datetime

进入日期时间

如果要将其转换为from datetime import date from functools import partial convert_to_date = partial(date,month=1,day=1) 对象,只需使用:

convert_to_date

现在year是一个将数字date转换为>>> convert_to_date(2013) datetime.date(2013, 1, 1) 对象的函数:

{{1}}