“Python Date de la chaîne” Réponses codées

chaîne à ce jour 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

convertir en date 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

chaîne Python Datetime

import datetime

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

convertir en date 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 de String

from datetime import datetime

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

Python Date de la chaîne

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

Réponses similaires à “Python Date de la chaîne”

Questions similaires à “Python Date de la chaîne”

Plus de réponses similaires à “Python Date de la chaîne” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code