set time zone python code example
Example 1: python time now other timezone
from datetime import datetime, timezone
utc_dt = datetime.now(timezone.utc)
dt = utc_dt.astimezone()
import pytz
tz = pytz.timezone('Europe/Berlin')
berlin_now = datetime.now(tz)
Example 2: get local timezone 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)
Example 3: python set timezone of datetime.now
my_date = datetime.datetime.now(pytz.timezone('US/Pacific'))