Hello dear readers! Welcome back to another edition of our tutorial on Python. In this tutorial guide, we are going to be studying about the Python Time tzset() method.
Python Time tzset() method resets the time conversion rules which is used by the library routines. The environment variable TZ specifies how it is done.
Python Time tzset() method resets the time conversion rules which is used by the library routines. The environment variable TZ specifies how it is done.
Syntax
The following below is the syntax for Python Time tzset() method -
time.tzset()
RECOMMENDED POST: Python Time time() Method with example
Parameter Details
- NA
Return Value
This function does not return any value.
Example
The following below is a simple example -
#!/usr/bin/python import time import os os.environ['TZ'] = 'EST+05EDT,M4.1.0,M10.5.0' time.tzset() print time.strftime('%X %x %Z') os.environ['TZ'] = 'AEST-10AEDT-11,M10.5.0,M3.5.0' time.tzset() print time.strftime('%X %x %Z')
Output
Below is the output of the above example -
23:05:51 07/17/20 EDT 13:05:51 07/18/20 AEST
RECOMMENDED POST: Python Time strptime() Method with example
Alright guys! This is where we are rounding up for this tutorial guide. In our next tutorial, we are going to be discussing about the Python Functions.
Feel free to ask your questions where necessary and i will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.
Feel free to ask your questions where necessary and i will attend to them as soon as possible. If this tutorial was helpful to you, you can use the share button to share this tutorial.
Follow us on our various social media platforms to stay updated with our latest tutorials. You can also subscribe to our newsletter in order to get our tutorials delivered directly to your emails.
Thanks for reading and bye for now.