Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- import time
- def show_struct(s):
- print ' tm_year :', s.tm_year
- print ' tm_mon :', s.tm_mon
- print ' tm_mday :', s.tm_mday
- print ' tm_hour :', s.tm_hour
- print ' tm_min :', s.tm_min
- print ' tm_sec :', s.tm_sec
- print ' tm_wday :', s.tm_wday
- print ' tm_yday :', s.tm_yday
- print ' tm_isdst :', s.tm_isdst
- print 'gmtime:'
- show_struct(time.gmtime())
- print '\nlocaltime:'
- show_struct(time.localtime())
- print '\nmktime:', time.mktime(time.localtime())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement