Python 练习实例92

Python 100例 Python 100例

题目:时间函数举例2。

程序分析:无。

实例(Python 2.0+)

#!/usr/bin/python # -*- coding: UTF-8 -*- if __name__ == '__main__': import time start = time.time() for i in range(3000): print i end = time.time() print end - start

以上实例输出结果为:

0
1
2
3
4
……

Python 100例 Python 100例

上一篇:Python 练习实例91

下一篇:Python 练习实例93

关注微信小程序
程序员编程王-随时随地学编程

扫描二维码
程序员编程王

扫一扫关注最新编程教程