Skip to content

Instantly share code, notes, and snippets.

@fereria
Created April 17, 2019 14:01
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 fereria/933c1fba8423aef1f1f8427e1c22dabd to your computer and use it in GitHub Desktop.
Save fereria/933c1fba8423aef1f1f8427e1c22dabd to your computer and use it in GitHub Desktop.
# -*- coding: utf-8 -*-
"""
基本はListと同じ。
違いは {} なのと、 key:value for x in XXX になっているところ
"""
d = {str(x): x * 3 for x in range(10)}
print (d)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment