Open In App

Python time.timezone Constant

Last Updated : 05 Nov, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

Python time. timezone constant returns the local (non-DST) timezone offset in UTC format, where DST stands for Daylight Saving Time. It is negative in most of Western Europe, positive in the US, zero in the UK).  This constant returns the current timezone in which you reside.

Python3




import time
  
print(time.timezone)


Output:

-19800

time.tzname

A similar function to get the name of timezone is time.tzname. It gives output in the form of a tuple.  The tuple contains two strings. The first one is the non-DST timezone in the area, and the second one is the name of the DST timezone in the area.

Python3




import time
  
print(time.tzname)


Output:

('India Standard Time', 'India Summer Time')

time.altzone

It returns the offset of the local DST timezone, in seconds west of UTC

Python3




import time
  
print(time.altzone)


Output:

-23400

time.daylight

It returns Nonzero if a DST timezone is defined

Python3




import time
  
print(time.daylight)


Output:

0


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads