programming-examples/python/_Basics/Determine profiling of Python programs.py

4 lines
73 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
import cProfile
def sum():
print(1+2)
cProfile.run('sum()')