我想知道,以下两种方法中声明字典的最佳实践是什么,为什么?>>>a=dict(one=2, two=3) # {"two":3, "one":2}>>>a={"two":3, "one":2} 查看完整描述