Answers for "convert timezone in yyyy mm dd hh mm ss"

0

Convert a date to yyyy mm dd format

const formatYmd = date => date.toISOString().slice(0, 10);
formatYmd(new Date());
Posted by: Guest on October-21-2020
0

Converting (YYYY-MM-DD-HH:MM:SS) date time

>>> from datetime import datetime
>>> inDate = "29-Apr-2013-15:59:02"
>>> d = datetime.strptime(inDate, "%d-%b-%Y-%H:%M:%S")
>>> d
datetime.datetime(2013, 4, 29, 15, 59, 2)
>>> d.strftime("YYYYMMDD HH:mm:ss (%Y%m%d %H:%M:%S)")
'YYYYMMDD HH:mm:ss (20130429 15:59:02)'
Posted by: Guest on November-23-2021

Code answers related to "convert timezone in yyyy mm dd hh mm ss"

Python Answers by Framework

Browse Popular Code Answers by Language