diff options
author | Aliaksandr <s-a-n-9@mail.ru> | 2023-12-14 15:50:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-14 15:50:34 +0100 |
commit | e50a0fbacca18d61cd5a38c044ed34a404b54405 (patch) | |
tree | 15efd2dddc9417bf5dae041be1b1666005490c1c /ru-ru | |
parent | 4daa2014c2f0809edb5e6e177f6908846d9cd053 (diff) |
Update python-ru.html.markdown (#4064)
Diffstat (limited to 'ru-ru')
-rw-r--r-- | ru-ru/python-ru.html.markdown | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/ru-ru/python-ru.html.markdown b/ru-ru/python-ru.html.markdown index e0e53b9c..e088593e 100644 --- a/ru-ru/python-ru.html.markdown +++ b/ru-ru/python-ru.html.markdown @@ -353,7 +353,6 @@ empty_set = set() # Да, оно выглядит примерно как словарь. Ну извините, так уж вышло. filled_set = {1, 2, 2, 3, 4} # => {1, 2, 3, 4} -# Similar to keys of a dictionary, elements of a set have to be immutable. # Как и ключи словаря, элементы множества должны быть неизменяемыми. invalid_set = {[1], 1} # => Выбрасывает ошибку TypeError: unhashable type: 'list' valid_set = {(1,), 1} |