Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wrote this simple code (in python) in test.py. I try to run timeit and I don't have any errors but I don't get any information about the time of run. Can you help me ?

import timeit

def functionsWhile():
    "Desc about function"
    lic = 0
    n = 30000
    while lic<= n:
            lic += 1
    #print "test"
    return lic

t = timeit.Timer("functionsWhile()", "from __main__ import functionsWhile")

try:
    t.repeat(3, 2)
except:
    t.print_exc()

I expect a result such as (EXAMPLE):

$>python test.py
[0.006793975830078125, 0.006793975830078125, 0.006793975830078125]
$>

But I have only:

$>python test.py
$>

I don't have result from timeit. I use python 2.7 and linux.

share|improve this question
4  
Have you tried print? – WolframH May 6 '12 at 15:53
Yeah, just typing the variable name only works in the interactive interpreter but not when run as a script. – jamylak May 6 '12 at 15:54
"just typing the variable name only works in the interactive interpreter but not when run as a script." That's how the interpreter works for everything that returns a value. Try putting a plain "Hello" in the interactive interpreter and in a script, for example. – alexis May 6 '12 at 16:10
Your code is giving the desired output in python interpreter.So, you are definitely missing a print statement. – RanRag May 6 '12 at 16:12
Yes, of course. Thanks :) – Bartosz Kowalczyk May 6 '12 at 16:29

1 Answer

up vote 6 down vote accepted

Try to print the result of t.repeat.

share|improve this answer
Thanks for help :D – Bartosz Kowalczyk May 6 '12 at 16:28

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.