Python日期格式变更

"""
变更日期格式
elementTime=2021/12/1
return:2021/12/01
"""
def date_convert(elementTime): 
    timeArray=time.strptime(elementTime, "%Y/%m/%d")
    otherStyleTime =time.strftime("%Y/%m/%d", timeArray)
    return otherStyleTime

将不含有“0”的日期变更为带“0”的

    原文作者:qq_35085535
    原文地址: https://blog.csdn.net/qq_35085535/article/details/121740596
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞