“Data Pythona od ciągu” Kod odpowiedzi

ciąg do tej pory 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

przekształcić w Python daty

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

przekształcić w Python daty

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 z String

from datetime import datetime

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

Data Pythona od ciągu

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

Odpowiedzi podobne do “Data Pythona od ciągu”

Pytania podobne do “Data Pythona od ciągu”

Więcej pokrewnych odpowiedzi na “Data Pythona od ciągu” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu