“Manipulation du fuseau horaire à Python” Réponses codées

Python Time maintenant autre fuseau horaire

#as an aware datetime
from datetime import datetime, timezone

utc_dt = datetime.now(timezone.utc) # UTC time
dt = utc_dt.astimezone() # local time


#or from pytz database
import pytz

tz = pytz.timezone('Europe/Berlin')
berlin_now = datetime.now(tz)
Fragile Gecko

fuseau horaire Python DateTime

import datetime
import pytz
my_date = datetime.datetime.now(pytz.timezone('US/Pacific'))
Panicky Pigeon

Python Importer du fuseau horaire

from datetime import timezone
Super Sloth

Manipulation du fuseau horaire à Python

from datetime import datetime
import pytz

local = datetime.now()
print("Local:", local.strftime("%m/%d/%Y, %H:%M:%S"))


tz_NY = pytz.timezone('America/New_York') 
datetime_NY = datetime.now(tz_NY)
print("NY:", datetime_NY.strftime("%m/%d/%Y, %H:%M:%S"))

tz_London = pytz.timezone('Europe/London')
datetime_London = datetime.now(tz_London)
print("London:", datetime_London.strftime("%m/%d/%Y, %H:%M:%S"))
SAMER SAEID

Réponses similaires à “Manipulation du fuseau horaire à Python”

Questions similaires à “Manipulation du fuseau horaire à Python”

Plus de réponses similaires à “Manipulation du fuseau horaire à Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code