📜  time py - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:30.825000             🧑  作者: Mango

代码示例2
import time
thistime = time.time()
# Here's an idea!
def CountTime():
  while(True):
    time.sleep(1)
    print(thistime)
CountTime()