我有一个名为construction_year的列作为数字(int)年。我想在python中将其转换为dd-mm-yyyy
格式。我尝试过datetime和pandas to_datetim并转换时间戳提取格式但是徒劳无功。
Ex:我喜欢2013年(int)我希望在python 3.x中将其转换为01-01-2013。
答案 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}}