Python change Datetime Timezone

Convert timezone using pytz package. Here’s how to install it pip install pytz Python datetime set time zone Change the current time to UTC time zone. from pytz import timezone from datetime import datetime f = “%Y-%m-%d %H:%M:%S %Z%z” now_timezone = datetime.now(timezone(‘UTC’)) print (now_timezone.strftime(f)) Result >> 2020-11-19 10:46:02 UTC+0000 Add timezone on a string date …

Python change Datetime Timezone Read More »