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.
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.
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
import time
print(time.altzone)
Output:
-23400
time.daylight
It returns Nonzero if a DST timezone is defined
import time
print(time.daylight)
Output:
0