Ubuntu Pastebin

Paste from smoser at Tue, 16 Aug 2016 19:36:41 +0000

Download as text
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
for python in python python3; do 
    for num in -1 0 10; do
       echo == $python $num ==
       time $python /tmp/my.py $num does_not_matter
    done
 done
== python -1 ==

real	0m0.013s
user	0m0.012s
sys	0m0.000s
== python 0 ==

real	0m0.130s
user	0m0.124s
sys	0m0.004s
== python 10 ==

real	0m0.325s
user	0m0.308s
sys	0m0.016s
== python3 -1 ==

real	0m0.032s
user	0m0.028s
sys	0m0.004s
== python3 0 ==

real	0m0.180s
user	0m0.168s
sys	0m0.012s
== python3 10 ==

real	0m0.267s
user	0m0.252s
sys	0m0.012s
Download as text