What's the difference between () vs [] vs {}?

后端 未结 4 760
轻奢々
轻奢々 2020-12-13 04:56

What\'s the difference between () vs [] vs {} in Python?
They\'re collections? How can I tell when to use which?

4条回答
  •  再見小時候
    2020-12-13 05:18

    () - tuple
    [] - list
    {} - dictionary
    

    All Python tutorials should cover this. Here is a good place to start.

提交回复
热议问题