“Дата Strftime Python” Ответ

Дата Strftime Python

import datetime
datetime.datetime.now().strftime ("%Y%m%d")
20151015
Clear Curlew

Strptime Python

import datetime
d = datetime.datetime.strptime("01/27/2012", "%m/%d/%Y")
print(d)
output ....
2012-01-27 00:00:00
launchable 720

Python работает с объектами даты

Yes, the strftime() method returns a string representing date and time using 
date, 
time or 
datetime object.
Powerful Penguin

Ответы похожие на “Дата Strftime Python”

Вопросы похожие на “Дата Strftime Python”

Больше похожих ответов на “Дата Strftime Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования