hey again i started to look at the time module a lot and i made this program:
import time
time.clock
a = 0
print('hello')
while a < 10000:
print(a)
a+=1
a = time.clock()
print(a)
but i dont understand what a means so can you help me please