Python计算程序运行时间的方法

yipeiwu_com5年前Python基础

本文实例讲述了Python计算程序运行时间的方法。分享给大家供大家参考。具体实现方法如下:

复制代码 代码如下:

import time

def start_sleep():
    time.sleep(3)

if __name__ == '__main__':
    #The start time
    start = time.clock()

    #A program which will run for 3 seconds
    start_sleep()

    #The End time
    end = time.clock()

    print("The function run time is : %.03f seconds" %(end-start))

    # End

希望本文所述对大家的Python程序设计有所帮助。

相关文章

python使用reportlab画图示例(含中文汉字)

准备工作 开发环境:python2.6,reportlab 准备中文字体文件:simsun.ttc 代码: 复制代码 代码如下:#!/usr/bin/env python2.6#codi...

python使用__slots__让你的代码更加节省内存

python使用__slots__让你的代码更加节省内存

前言 在默认情况下,Python的新类和旧类的实例都有一个字典来存储属性值。这对于那些没有实例属性的对象来说太浪费空间了,当需要创建大量实例的时候,这个问题变得尤为突出。 因此这种默认的...

pandas 使用apply同时处理两列数据的方法

多的不说,看了代码就懂了! df = pd.DataFrame ({'a' : np.random.randn(6), 'b' : ['foo', 'bar'] * 3,...

Python线程障碍对象Barrier原理详解

python线程Barrier俗称障碍对象,也称栅栏,也叫屏障。 一.线程障碍对象Barrier简介 # 导入线程模块 import threading # 障碍对象barrier...

Python二叉树的遍历操作示例【前序遍历,中序遍历,后序遍历,层序遍历】

本文实例讲述了Python二叉树的遍历操作。分享给大家供大家参考,具体如下: # coding:utf-8 """ @ encoding: utf-8 @ author: lixia...