Home > Article > Backend Development > Are python collections mutable?
A set is an unordered sequence of non-repeating elements. Python collections include mutable collections and immutable collections.
You can use curly brackets { } or the set() function to create a set. Note: To create an empty set, you must use set() instead of { }, because { } is used to create an empty dictionary.
Creation format:
The following is an example of demonstration
The above is the detailed content of Are python collections mutable?. For more information, please follow other related articles on the PHP Chinese website!