diff options
author | 2020-05-17 13:34:27 +0300 | |
---|---|---|
committer | 2020-05-17 13:34:27 +0300 | |
commit | abb9e57f7022d87f762660d10c83b7912483b873 (patch) | |
tree | d1839e490c30587ddad1d243d0b4ed83577fc8ef | |
parent | Change standalone programs to interactive sessions (diff) |
Add a note on user-defined classes
-rw-r--r-- | bot/resources/tags/mutability.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/resources/tags/mutability.md b/bot/resources/tags/mutability.md index 8b98da43a..3447109ad 100644 --- a/bot/resources/tags/mutability.md +++ b/bot/resources/tags/mutability.md @@ -34,4 +34,4 @@ Mutable data types like `list`, on the other hand, can be changed in-place: [1, 2, 3, 4] ``` -Other examples of mutable data types in Python are `dict` and `set`. +Other examples of mutable data types in Python are `dict` and `set`. Instances of user-defined classes are also mutable. |