# coding=utf-8 ''' Created on 2016年3月10日 @author: ChenHao ''' import time print(time.time()) t = time.time() while(time.time() < (t + 1)): pass print("结束")