摘要: ``` import cProfile import random def f2(lIn): print("count run time") lIn = [random.random() for i in range(100000)] cProfile.run('f2(lIn)') ``` 阅读全文
posted @ 2018-03-19 23:01 随便了888 阅读(168) 评论(0) 推荐(0) 编辑