VOOZH about

URL: https://www.geeksforgeeks.org/pandas/python-pandas-series-dt-tz/

⇱ Python | Pandas Series.dt.tz - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python | Pandas Series.dt.tz

Last Updated : 20 Mar, 2019
Series.dt can be used to access the values of the series as datetimelike and return several properties. Pandas Series.dt.tz attribute return the timezone if any, else it return None.
Syntax: Series.dt.tz Parameter : None Returns : timezone
Example #1: Use Series.dt.tz attribute to find the timezone of the underlying datetime based data in the given series object. Output : 👁 Image
Now we will use Series.dt.tz attribute to find the timezone of the datetime data in the given series object. Output : 👁 Image
As we can see in the output, the Series.dt.tz attribute has returned None indicating the timezone for the given datetime data is not known. Example #2 : Use Series.dt.tz attribute to find the timezone of the underlying datetime based data in the given series object. Output : 👁 Image
Now we will use Series.dt.tz attribute to find the timezone of the datetime data in the given series object. Output : 👁 Image
As we can see in the output, the Series.dt.tz attribute has successfully returned the timezone of the underlying datetime based data in the given Series object.
Comment

Explore