Python 时间time clock() 方法 Python 时间time asctime() 方法 Python 时间time ctime() 方法 Python 时间time clock() 方法 #!/usr/bin/python import time def procedure(): time.sleep(2.5) # measure process time t0 = time.clock() procedure() print time.clock(), "seconds process time" # measure wall time t0 = time.time() procedure() print time.time() - t0, "seconds wall time" Python 时间time asctime() 方法 Python 时间time ctime() 方法