# encoding: utf-8 import sys """插入sys檔案中所有函式,使用sys檔中的write函式前須加檔名""" from time import time """從time檔案插入time()函式,使用time()前不需要加檔名""" print time() sys.stdout.write( str(time()) + "\n" )