Horje
python strftime iso 8601 Code Example
python datetime to string iso 8601
from datetime import datetime
my_date = datetime.now()
print(my_date.strftime('%Y-%m-%dT%H:%M:%S.%f%z'))
python strftime iso 8601
>>> # convert string in iso 8601 date dime format to python datetime type
>>> import datetime
>>> datetime.datetime.strptime('2020-06-19T15:52:50Z', "%Y-%m-%dT%H:%M:%SZ")
datetime.datetime(2020, 6, 19, 15, 52, 50)
python datetime to string iso 8601
from datetime import datetime
my_date = datetime.now()
print(my_date.isoformat())




Python

Related
how to detect keypress in python Code Example how to detect keypress in python Code Example
say command python Code Example say command python Code Example
countplot in pandas Code Example countplot in pandas Code Example
No module named 'mpl_toolkits.basemap' Code Example No module named 'mpl_toolkits.basemap' Code Example
error urllib request no attribute Code Example error urllib request no attribute Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
7