
It is defined in UTC (Coordinated Universal Time), the standard against which the world's region-based time is coordinated.

In other words, timezone refers to the local time of a particular region based on the earth's rotation. Timezone is defined as the standard time depending on the geographical representation of that place. We will use Python's pytz library to work with the timezone. Let's have a brief introduction of the timezone. Timezone can be described as the geographical area where standard time is observed. We will also learn about the local time zone of Python. In this tutorial, we will define how we can work with the different timezones in Python.
#Python get utc time how to
Next → ← prev How to handle Time zones in Python
#Python get utc time install
We learned how to convert local time to UTC timezone in python.Python Tutorial Python Features Python History Python Applications Python Install Python Example Python Variables Python Data Types Python Keywords Python Literals Python Operators Python Comments Python If else Python Loops Python For Loop Python While Loop Python Break Python Continue Python Pass Python Strings Python Lists Python Tuples Python List Vs Tuple Python Sets Python Dictionary Python Functions Python Built-in Functions Python Lambda Functions Python Files I/O Python Modules Python Exceptions Python Date Python Regex Python Sending Email Read CSV File Write CSV File Read Excel File Write Excel File Python Assert Python List Comprehension Python Collection Module Python Math Module Python OS Module Python Random Module Python Statistics Module Python Sys Module Python IDEs Python Arrays Command Line Arguments Python Magic Method Python Stack & Queue PySpark MLlib Python Decorator Python Generators Web Scraping Using Python Python JSON Python Itertools Python Multiprocessing How to Calculate Distance between Two Points using GEOPY Gmail API in Python How to Plot the Google Map using folium package in Python Grid Search in Python Python High Order Function nsetools in Python Python program to find the nth Fibonacci Number Python OpenCV object detection Python SimpleImputer module Second Largest Number in Python Print('Current time in UTC Time-zone: ', dt_utc)

For example, from datetime import datetime For that, we will pass the pytz.UTC as argument to astimezone() function.

Using astimezone(), we can convert it to UTC timezone and get the current UTC. Suppose we have a datetime object that contains the current time in the local timezone, and it has the timezone information associated with it. Output: Datetime in Local Time zone: 09:10:34.300030ĭatetime in UTC Time zone: 03:40:34.300030+00:00 Convert the current local time to UTC in Python Latest Python - Video Tutorial from datetime import datetime Instead of string, if you already have the datetime object with local timezone (or null timezone), we can convert it directly to the datetime object with UTC timezone using astimezone(). Output: Datetime in Local Time zone: 08:18:19ĭatetime in UTC Time zone: 02:48:19+00:00ĭatetime string in UTC Time zone: 02:48:19 Convert timezone of datetime object from local to UTC in Python Print('Datetime string in UTC Time zone: ', dt_utc_str) Print('Datetime in UTC Time zone: ', dt_utc) # Convert local datetime to UTC time-zone datetime Print('Datetime in Local Time zone: ', local_dt) Local_dt = datetime.strptime(dt_str, format)

# Create datetime object in local timezone Let’s use this to convert local time to UTC i.e. It returns a new DateTime instance according to the specified time zone parameter tz, i.e., it converts the time in calling datetime to the specified timezone and returns a new datetime object containing it. The astimezone() function accepts a timezone instance tz as an argument.
