Answers for "time change time zones python"

2

python time now other timezone

#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)
Posted by: Guest on December-16-2020
0

python set timezone windows

import os
os.system('tzutil /s "Central Standard Time"')

//In windows command prompt try:

//This gives current timezone:
tzutil /g

//This gives a list of timezones:
tzutil /l

//This will set the timezone:
tzutil /s "Central America Standard Time"
Posted by: Guest on August-27-2021

Python Answers by Framework

Browse Popular Code Answers by Language