HOME/Articles/

simple python-example-10 (snippet)

Article Outline

Python example 'python-example-10'

Modules used in program:

  • import time

python-example-10

Python example: python-example-10

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

print(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time())))

# 暂停一秒
time.sleep(1)

print(time.strftime('%Y-%m-%d %H:%M:%S',time.localtime(time.time())))