4 lines
73 B
Python
4 lines
73 B
Python
|
import cProfile
|
||
|
def sum():
|
||
|
print(1+2)
|
||
|
cProfile.run('sum()')
|