摘要: 网络时代 一: 二: 三: Python时代 Python(初级) ● Python——文字类东西 ● Python——安装 ● Python——变量 ● Python——输入输出 ● Python——条件语句 ● Python——结束语句 ● Python——循环语句 ● Python——运算符 阅读全文
posted @ 2019-09-25 17:32 新兵蛋Z 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 程序分析可以系统性地分析程序的运行速度、内存使用情况等。 cProfile是Python的分析器,用于测量程序的运行时间和程序内各个函数调用消耗的时间。 import cProfile def add(): total = 0 for i in range(1, 10000001): total + 阅读全文
posted @ 2024-04-17 09:59 新兵蛋Z 阅读(1) 评论(0) 推荐(0) 编辑