网站首页
编程语言
数据库
系统相关
其他分享
编程问答
runRe
2024-07-30
python性能分析器:cProfile
代码:(1)importcProfileimportrecProfile.run('re.compile("foo|bar")')运行结果:(2)importcProfiledefrunRe():importrecProfile.runctx('re.compile("foo|bar")',None,locals())runRe()运行结果:(3)i