Answers for "python change datetime yyyy-mm-dd hh:mm:ss.f format to yyyy-mm-dd hh:mm"

0

yyyy-mm-dd hh:mm:ss.0 python

now = datetime.now().strftime("%Y-%m-%d %H:%M:%S.%f")
Posted by: Guest on November-10-2020
0

convert date yyyy-mm-dd to dd-mm-yyyy in python

import re
def change_date_format(dt):
        return re.sub(r'(\d{4})-(\d{1,2})-(\d{1,2})', '\\3-\\2-\\1', dt)
dt1 = "2026-01-02"
print("Original date in YYY-MM-DD Format: ",dt1)
print("New date in DD-MM-YYYY Format: ",change_date_format(dt1))
Posted by: Guest on December-18-2020

Code answers related to "python change datetime yyyy-mm-dd hh:mm:ss.f format to yyyy-mm-dd hh:mm"

Python Answers by Framework

Browse Popular Code Answers by Language