“Comment obtenir 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

Obtenez le fuseau horaire local Python

import datetime

now = datetime.datetime.now()
local_now = now.astimezone()
local_tz = local_now.tzinfo
local_tzname = local_tz.tzname(local_now)
print(local_tzname)
Morpheus v2.0

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

Comment obtenir du fuseau horaire à Python

from time import gmtime, strftime
print(strftime("%z", gmtime()))
SusCat

Comment obtenir les fuseaux horaires à Python

The most prevalent library for timezones in python is pytz, which can be installed by:

pip install pytz
It allows you to manipulate times by assigning times to timezones using Olsen timezones (e.g. Europe/London).
Healthy Hedgehog

Réponses similaires à “Comment obtenir du fuseau horaire à Python”

Questions similaires à “Comment obtenir du fuseau horaire à Python”

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

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code