HOME/Articles/

simple python-example-91 (snippet)

Article Outline

Python example 'python-example-91'

python-example-91

Python example: python-example-91

#!/usr/bin/python
# -*- coding: UTF-8 -*-

if __name__ == '__main__':
    import time
    print(time.ctime(time.time()))
    print(time.asctime(time.localtime(time.time())))
    print(time.asctime(time.gmtime(time.time())))