Skip to content

Instantly share code, notes, and snippets.

@tomoh1r
Created August 13, 2015 01:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tomoh1r/eca346dad30eaa8ff356 to your computer and use it in GitHub Desktop.
Save tomoh1r/eca346dad30eaa8ff356 to your computer and use it in GitHub Desktop.
Python で辞書を作る
>>> timeit.timeit('{x: x for x in range(10000)}', number=1000)
0.5202829837799072
>>> timeit.timeit('dict((x, x) for x in range(10000))', number=1000)
1.0116031169891357
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment