“Python Date From String” Ответ

строка на сегодняшний день Python

import datetime

date_time_str = '2018-06-29 08:15:27.243860'
date_time_obj = datetime.datetime.strptime(date_time_str, '%Y-%m-%d %H:%M:%S.%f')

print('Date:', date_time_obj.date())
print('Time:', date_time_obj.time())
print('Date-time:', date_time_obj)
Muddy Magpie

преобразовать в дату Python

from datetime import datetime

datetime_str = '09/19/18 13:55:26'

datetime_object = datetime.strptime(datetime_str, '%m/%d/%y %H:%M:%S')

print(type(datetime_object))
print(datetime_object)  # printed in default format
Happy Hawk

Python DateTime String

import datetime

today = datetime.datetime.now()
date_time = today.strftime("%m/%d/%Y, %H:%M:%S")
print("date and time:",date_time)
marcofaga

преобразовать в дату Python

date_str = '09-19-2018'

date_object = datetime.strptime(date_str, '%m-%d-%Y').date()
print(type(date_object))
print(date_object)  # printed in default formatting
Happy Hawk

Python DateTime из строки

from datetime import datetime

datetime_object = datetime.strptime('Jun 1 2005  1:33PM', '%b %d %Y %I:%M%p')
Luoskate

Python Date From String

from datetime import datetime, timezone

timestamp_str = str(datetime.now(timezone.utc))
print(timestamp_str, type(timestamp_str))   # 2022-05-06 11:23:00.718012+00:00 <class 'str'>

timestamp = datetime.fromisoformat(timestamp_str) # Python 3.7+: 
print(timestamp, type(timestamp))   # 2022-05-06 11:23:00.718012+00:00 <class 'datetime.datetime'>

timestamp = datetime.strptime(timestamp_str, '%Y-%m-%d %H:%M:%S.%f%z')
print(timestamp, type(timestamp))   # 2022-05-06 11:23:00.718012+00:00 <class 'datetime.datetime'>
Foolish Finch

Ответы похожие на “Python Date From String”

Вопросы похожие на “Python Date From String”

Больше похожих ответов на “Python Date From String” по Python

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

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