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())))
Useful links
- Learn Python: https://pythonbasics.org/
- More Python: https://pythonprogramminglanguage.com