First time here? Check out the FAQ!

Максим Гвоздецький's profile - activity

2019-11-25 13:01:03 -0500 received badge Famous Question (source)
2019-11-25 13:01:03 -0500 received badge Notable Question (source)
2019-11-25 13:01:03 -0500 received badge Popular Question (source)
2019-03-06 21:59:00 -0500 received badge Student (source)
2019-03-06 21:54:34 -0500 marked best answer Different runtime programs

Hello!Why does the speed of performance of functions differ depending on where they are launched? If I run in the console - program runs faster than in IDE (I use Wing Pro) Example.

Execution time in console:3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:54:40)
forLoop : 1.8672226498562265
listComp : 1.0452214996682148
mapCall : 0.5306503870825039
genExpr : 1.427833488166335
genFunc : 1.4664546781685468

Execution time in IDE:3.6.4 (v3.6.4:d48eceb, Dec 19 2017, 06:54:40)
forLoop : 4.45649404998894
listComp : 1.9458866622428665
mapCall : 0.5576458305684584
genExpr : 12.455734571997347
genFunc : 12.939494802034947

I use a small function

def timer(func, *pargs, **kargs):
        start = time.clock()
        for i in repslist:
                ret = func(*pargs, **kargs)
        elapsed = time.clock() - start
        return (elapsed, ret)

For some reason, different execution times in the console and IDE

2018-10-24 10:59:00 -0500 asked a question Different runtime programs

Different runtime programs Hello!Why does the speed of performance of functions differ depending on where they are launc