Timeit Simple 2

import timeit
def some_function():
    return map(lambda x: x^2, range(10))
time1 = timeit.timeit(some_function)
print(time1)
0.39235781200113706
print(time1)
0.39235781200113706