“DateTime à Stronter Python” Réponses codées

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

DateTime à chaîner PHP


<?php
$date = new DateTime('2000-01-01');
echo $date->format('Y-m-d H:i:s');
?>

Beautiful Baboon

DateTime à Stronter Python

import datetime
t = datetime.datetime(2012, 2, 23, 0, 0)
t.strftime('%m/%d/%Y')
Juan David Morales Navarrete

Python de l'horodatage à la chaîne

from datetime import datetime

timestamp = 1545730073
dt_object = datetime.fromtimestamp(timestamp)

print("dt_object =", dt_object)
print("type(dt_object) =", type(dt_object))

# Output

dt_object = "2018-12-25 09:27:53"
type(dt_object) = <class 'datetime.datetime'>
Cippamilalippa

Python DateTime de String

from datetime import datetime

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

DateTime à Stronter Python

from datetime import datetime

now = datetime.now() # current date and time

year = now.strftime("%Y")
print("year:", year)

month = now.strftime("%m")
print("month:", month)

day = now.strftime("%d")
print("day:", day)

time = now.strftime("%H:%M:%S")
print("time:", time)

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

Réponses similaires à “DateTime à Stronter Python”

Questions similaires à “DateTime à Stronter Python”

Plus de réponses similaires à “DateTime à Stronter Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code