I wanna make a stopwatch. I did this on windows and it worked perfectly. When then used the same program on Unix it didn't work. I have checked in the pythonlibrary, but i can't find anything.
This is my simple code:
Why does this work on windows, but not on Unix?
Thanks!
This is my simple code:
Code:
import time
t1=time.clock()
g=raw_input("Wait a sec and press enter")
t2=time.clock()
print t2-t1
Why does this work on windows, but not on Unix?
Thanks!
Comment