Created
August 29, 2018 10:31
-
-
Save yccheok/673b14af3d8bde75d656a2e2d17dc164 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| >>> d = datetime.datetime.utcfromtimestamp(1535500800) | |
| >>> time.mktime(d.timetuple()) | |
| 1535500800.0 | |
| >>> kl_tz = timezone('Asia/Kuala_Lumpur') | |
| >>> dd = d.astimezone(kl_tz) | |
| >>> time.mktime(dd.timetuple()) | |
| 1535529600.0 | |
| >>> dd.hour | |
| 8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment