Hello World
1.6K subscribers
71 photos
6 videos
3 files
161 links
Be so good that you cannot be ignored. And then, go one step beyond.
Download Telegram
timeit

Модуль timeit позволяет измерить время выполнения небольших кусочков кода:
>>> import timeit
>>> timeit.timeit('"-".join(str(n) for n in range(100))',
number=10000)
0.3412662749997253


>>> timeit.timeit('"-".join([str(n) for n in range(100)])',
number=10000)
0.2996307989997149


>>> timeit.timeit('"-".join(map(str, range(100)))',
number=10000)
0.24581470699922647


#timeit #tips