xxxxxxxxxx
import datetime
import pytz
# Get the current local time
local_time = datetime.datetime.now()
# Get the local timezone
local_timezone = pytz.timezone('Your_Local_Time_Zone')
# Convert local time to UTC
utc_time = local_time.astimezone(pytz.UTC)
# Print the converted time
print("Local Time:", local_time)
print("UTC Time:", utc_time)
xxxxxxxxxx
import datetime
# Get the current UTC time
utc_now = datetime.datetime.utcnow()
# Convert UTC time to local time
local_now = utc_now + datetime.timedelta(hours=datetime.datetime.now().hour - utc_now.hour)
# Print the local time
print("Local time:", local_now)
xxxxxxxxxx
from datetime import datetime, timezone
def utc_to_local(utc_dt):
return utc_dt.replace(tzinfo=timezone.utc).astimezone(tz=None)