i did go thru a google search and found some functions .. but those results where horrifying , i guess i am using a wrong method of finding time .
def test():
"Stupid test function"
L = []
for i in range(100):
L.append(i)
if __name__=='__main__':
from timeit import Timer
t = Timer("test()", "from __main__ import test")
print t.timeit()
The time taken to execute or displayed was 21.0178511143
is thats true .. then is python that slow ...? cuz in C its a fraction of a second ...