Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下の2つのアプローチで辞書を宣言するベストプラクティスはどれですか?その理由は?
>>>a=dict(one=2, two=3) # {"two":3, "one":2} >>>a={"two":3, "one":2}
2 番目のものはより明確で読みやすく、非常に一般的な操作であるため、特定の構文が存在することは良いことです。
a = {"two":3, "one":2}
そして、それは一般的なケースで優先されるべきです。パフォーマンスの議論は二次的な問題ですが、それでも{}構文は高速です。
{}