1
0
mirror of https://github.com/satwikkansal/wtfpython synced 2024-09-18 21:51:44 +02:00

Fix links to Russian translation

This commit is contained in:
Vadim Nifadev 2024-05-04 19:58:02 +03:00
parent 16628ba071
commit 19fba38556
2 changed files with 201 additions and 74 deletions

209
README.md vendored
View File

@ -2,7 +2,7 @@
<h1 align="center">What the f*ck Python! 😱</h1>
<p align="center">Exploring and understanding Python through surprising snippets.</p>
Translations: [Chinese 中文](https://github.com/robertparley/wtfpython-cn) | [Vietnamese Tiếng Việt](https://github.com/vuduclyunitn/wtfptyhon-vi) | [Spanish Español](https://web.archive.org/web/20220511161045/https://github.com/JoseDeFreitas/wtfpython-es) | [Korean 한국어](https://github.com/buttercrab/wtfpython-ko) | [Russian Русский](https://github.com/frontdevops/wtfpython) | [German Deutsch](https://github.com/BenSt099/wtfpython) | [Add translation](https://github.com/satwikkansal/wtfpython/issues/new?title=Add%20translation%20for%20[LANGUAGE]&body=Expected%20time%20to%20finish:%20[X]%20weeks.%20I%27ll%20start%20working%20on%20it%20from%20[Y].)
Translations: [Chinese 中文](https://github.com/robertparley/wtfpython-cn) | [Vietnamese Tiếng Việt](https://github.com/vuduclyunitn/wtfptyhon-vi) | [Spanish Español](https://web.archive.org/web/20220511161045/https://github.com/JoseDeFreitas/wtfpython-es) | [Korean 한국어](https://github.com/buttercrab/wtfpython-ko) | [Russian Русский](https://github.com/satwikkansal/wtfpython/tree/master/translations/ru-russian) | [German Deutsch](https://github.com/BenSt099/wtfpython) | [Add translation](https://github.com/satwikkansal/wtfpython/issues/new?title=Add%20translation%20for%20[LANGUAGE]&body=Expected%20time%20to%20finish:%20[X]%20weeks.%20I%27ll%20start%20working%20on%20it%20from%20[Y].)
Other modes: [Interactive Website](https://wtfpython-interactive.vercel.app) | [Interactive Notebook](https://colab.research.google.com/github/satwikkansal/wtfpython/blob/master/irrelevant/wtf.ipynb) | [CLI](https://pypi.python.org/pypi/wtfpython)
@ -24,84 +24,147 @@ So, here we go...
<!-- toc -->
- [Table of Contents](#table-of-contents)
- [Structure of the Examples](#structure-of-the-examples)
+ [ Some fancy Title](#-some-fancy-title)
- [Usage](#usage)
- [👀 Examples](#-examples)
* [Section: Strain your brain!](#section-strain-your-brain)
+ [ First things first! *](#-first-things-first-)
+ [ Strings can be tricky sometimes](#-strings-can-be-tricky-sometimes)
+ [ Be careful with chained operations](#-be-careful-with-chained-operations)
+ [ How not to use `is` operator](#-how-not-to-use-is-operator)
+ [ Hash brownies](#-hash-brownies)
+ [ Deep down, we're all the same.](#-deep-down-were-all-the-same)
+ [ Disorder within order *](#-disorder-within-order-)
+ [ Keep trying... *](#-keep-trying-)
+ [ For what?](#-for-what)
+ [ Evaluation time discrepancy](#-evaluation-time-discrepancy)
+ [ `is not ...` is not `is (not ...)`](#-is-not--is-not-is-not-)
+ [ A tic-tac-toe where X wins in the first attempt!](#-a-tic-tac-toe-where-x-wins-in-the-first-attempt)
+ [ Schrödinger's variable](#-schrödingers-variable-)
+ [ The chicken-egg problem *](#-the-chicken-egg-problem-)
+ [ Subclass relationships](#-subclass-relationships)
+ [ Methods equality and identity](#-methods-equality-and-identity)
+ [ All-true-ation *](#-all-true-ation-)
+ [ The surprising comma](#-the-surprising-comma)
+ [ Strings and the backslashes](#-strings-and-the-backslashes)
+ [ not knot!](#-not-knot)
+ [ Half triple-quoted strings](#-half-triple-quoted-strings)
+ [ What's wrong with booleans?](#-whats-wrong-with-booleans)
+ [ Class attributes and instance attributes](#-class-attributes-and-instance-attributes)
+ [ yielding None](#-yielding-none)
+ [ Yielding from... return! *](#-yielding-from-return-)
+ [ Nan-reflexivity *](#-nan-reflexivity-)
+ [ Mutating the immutable!](#-mutating-the-immutable)
+ [ The disappearing variable from outer scope](#-the-disappearing-variable-from-outer-scope)
+ [ The mysterious key type conversion](#-the-mysterious-key-type-conversion)
+ [ Let's see if you can guess this?](#-lets-see-if-you-can-guess-this)
+ [ Exceeds the limit for integer string conversion](#-exceeds-the-limit-for-integer-string-conversion)
* [Section: Slippery Slopes](#section-slippery-slopes)
+ [ Modifying a dictionary while iterating over it](#-modifying-a-dictionary-while-iterating-over-it)
+ [ Stubborn `del` operation](#-stubborn-del-operation)
+ [ The out of scope variable](#-the-out-of-scope-variable)
+ [ Deleting a list item while iterating](#-deleting-a-list-item-while-iterating)
+ [ Lossy zip of iterators *](#-lossy-zip-of-iterators-)
+ [ Loop variables leaking out!](#-loop-variables-leaking-out)
+ [ Beware of default mutable arguments!](#-beware-of-default-mutable-arguments)
+ [ Catching the Exceptions](#-catching-the-exceptions)
+ [ Same operands, different story!](#-same-operands-different-story)
+ [ Name resolution ignoring class scope](#-name-resolution-ignoring-class-scope)
+ [ Rounding like a banker *](#-rounding-like-a-banker-)
+ [ Needles in a Haystack *](#-needles-in-a-haystack-)
+ [ Splitsies *](#-splitsies-)
+ [ Wild imports *](#-wild-imports-)
+ [ All sorted? *](#-all-sorted-)
+ [ Midnight time doesn't exist?](#-midnight-time-doesnt-exist)
* [Section: The Hidden treasures!](#section-the-hidden-treasures)
+ [ Okay Python, Can you make me fly?](#-okay-python-can-you-make-me-fly)
+ [ `goto`, but why?](#-goto-but-why)
+ [ Brace yourself!](#-brace-yourself)
+ [ Let's meet Friendly Language Uncle For Life](#-lets-meet-friendly-language-uncle-for-life)
+ [ Even Python understands that love is complicated](#-even-python-understands-that-love-is-complicated)
+ [ Yes, it exists!](#-yes-it-exists)
+ [ Ellipsis *](#-ellipsis-)
+ [ Inpinity](#-inpinity)
+ [ Let's mangle](#-lets-mangle)
* [Section: Appearances are deceptive!](#section-appearances-are-deceptive)
+ [ Skipping lines?](#-skipping-lines)
+ [ Teleportation](#-teleportation)
+ [ Well, something is fishy...](#-well-something-is-fishy)
* [Section: Miscellaneous](#section-miscellaneous)
+ [ `+=` is faster](#--is-faster)
+ [ Let's make a giant string!](#-lets-make-a-giant-string)
+ [ Slowing down `dict` lookups *](#-slowing-down-dict-lookups-)
+ [ Bloating instance `dict`s *](#-bloating-instance-dicts-)
+ [ Minor Ones *](#-minor-ones-)
- [Section: Strain your brain!](#section-strain-your-brain)
- [ First things first! \*](#-first-things-first-)
- [💡 Explanation](#-explanation)
- [ Strings can be tricky sometimes](#-strings-can-be-tricky-sometimes)
- [💡 Explanation:](#-explanation-1)
- [ Be careful with chained operations](#-be-careful-with-chained-operations)
- [💡 Explanation:](#-explanation-2)
- [ How not to use `is` operator](#-how-not-to-use-is-operator)
- [💡 Explanation:](#-explanation-3)
- [ Hash brownies](#-hash-brownies)
- [💡 Explanation](#-explanation-4)
- [ Deep down, we're all the same.](#-deep-down-were-all-the-same)
- [💡 Explanation:](#-explanation-5)
- [ Disorder within order \*](#-disorder-within-order-)
- [💡 Explanation:](#-explanation-6)
- [ Keep trying... \*](#-keep-trying-)
- [💡 Explanation:](#-explanation-7)
- [ For what?](#-for-what)
- [💡 Explanation:](#-explanation-8)
- [ Evaluation time discrepancy](#-evaluation-time-discrepancy)
- [💡 Explanation](#-explanation-9)
- [ `is not ...` is not `is (not ...)`](#-is-not--is-not-is-not-)
- [💡 Explanation](#-explanation-10)
- [ A tic-tac-toe where X wins in the first attempt!](#-a-tic-tac-toe-where-x-wins-in-the-first-attempt)
- [💡 Explanation:](#-explanation-11)
- [ Schrödinger's variable \*](#-schrödingers-variable-)
- [💡 Explanation:](#-explanation-12)
- [ The chicken-egg problem \*](#-the-chicken-egg-problem-)
- [💡 Explanation](#-explanation-13)
- [ Subclass relationships](#-subclass-relationships)
- [💡 Explanation:](#-explanation-14)
- [ Methods equality and identity](#-methods-equality-and-identity)
- [💡 Explanation](#-explanation-15)
- [ All-true-ation \*](#-all-true-ation-)
- [💡 Explanation:](#-explanation-16)
- [💡 Explanation:](#-explanation-17)
- [ Strings and the backslashes](#-strings-and-the-backslashes)
- [💡 Explanation](#-explanation-18)
- [ not knot!](#-not-knot)
- [💡 Explanation:](#-explanation-19)
- [ Half triple-quoted strings](#-half-triple-quoted-strings)
- [💡 Explanation:](#-explanation-20)
- [ What's wrong with booleans?](#-whats-wrong-with-booleans)
- [💡 Explanation:](#-explanation-21)
- [ Class attributes and instance attributes](#-class-attributes-and-instance-attributes)
- [💡 Explanation:](#-explanation-22)
- [ yielding None](#-yielding-none)
- [💡 Explanation:](#-explanation-23)
- [ Yielding from... return! \*](#-yielding-from-return-)
- [💡 Explanation:](#-explanation-24)
- [ Nan-reflexivity \*](#-nan-reflexivity-)
- [💡 Explanation:](#-explanation-25)
- [ Mutating the immutable!](#-mutating-the-immutable)
- [💡 Explanation:](#-explanation-26)
- [ The disappearing variable from outer scope](#-the-disappearing-variable-from-outer-scope)
- [💡 Explanation:](#-explanation-27)
- [ The mysterious key type conversion](#-the-mysterious-key-type-conversion)
- [💡 Explanation:](#-explanation-28)
- [ Let's see if you can guess this?](#-lets-see-if-you-can-guess-this)
- [💡 Explanation:](#-explanation-29)
- [ Exceeds the limit for integer string conversion](#-exceeds-the-limit-for-integer-string-conversion)
- [💡 Explanation:](#-explanation-30)
- [Section: Slippery Slopes](#section-slippery-slopes)
- [ Modifying a dictionary while iterating over it](#-modifying-a-dictionary-while-iterating-over-it)
- [💡 Explanation:](#-explanation-31)
- [ Stubborn `del` operation](#-stubborn-del-operation)
- [💡 Explanation:](#-explanation-32)
- [ The out of scope variable](#-the-out-of-scope-variable)
- [💡 Explanation:](#-explanation-33)
- [ Deleting a list item while iterating](#-deleting-a-list-item-while-iterating)
- [💡 Explanation:](#-explanation-34)
- [ Lossy zip of iterators \*](#-lossy-zip-of-iterators-)
- [💡 Explanation:](#-explanation-35)
- [ Loop variables leaking out!](#-loop-variables-leaking-out)
- [💡 Explanation:](#-explanation-36)
- [ Beware of default mutable arguments!](#-beware-of-default-mutable-arguments)
- [💡 Explanation:](#-explanation-37)
- [ Catching the Exceptions](#-catching-the-exceptions)
- [💡 Explanation](#-explanation-38)
- [ Same operands, different story!](#-same-operands-different-story)
- [💡 Explanation:](#-explanation-39)
- [ Name resolution ignoring class scope](#-name-resolution-ignoring-class-scope)
- [💡 Explanation](#-explanation-40)
- [ Rounding like a banker \*](#-rounding-like-a-banker-)
- [💡 Explanation:](#-explanation-41)
- [ Needles in a Haystack \*](#-needles-in-a-haystack-)
- [💡 Explanation:](#-explanation-42)
- [ Splitsies \*](#-splitsies-)
- [💡 Explanation:](#-explanation-43)
- [ Wild imports \*](#-wild-imports-)
- [💡 Explanation:](#-explanation-44)
- [ All sorted? \*](#-all-sorted-)
- [💡 Explanation:](#-explanation-45)
- [ Midnight time doesn't exist?](#-midnight-time-doesnt-exist)
- [💡 Explanation:](#-explanation-46)
- [Section: The Hidden treasures!](#section-the-hidden-treasures)
- [ Okay Python, Can you make me fly?](#-okay-python-can-you-make-me-fly)
- [💡 Explanation:](#-explanation-47)
- [ `goto`, but why?](#-goto-but-why)
- [💡 Explanation:](#-explanation-48)
- [ Brace yourself!](#-brace-yourself)
- [💡 Explanation:](#-explanation-49)
- [ Let's meet Friendly Language Uncle For Life](#-lets-meet-friendly-language-uncle-for-life)
- [💡 Explanation:](#-explanation-50)
- [ Even Python understands that love is complicated](#-even-python-understands-that-love-is-complicated)
- [💡 Explanation:](#-explanation-51)
- [ Yes, it exists!](#-yes-it-exists)
- [💡 Explanation:](#-explanation-52)
- [ Ellipsis \*](#-ellipsis-)
- [💡 Explanation](#-explanation-53)
- [ Inpinity](#-inpinity)
- [💡 Explanation:](#-explanation-54)
- [ Let's mangle](#-lets-mangle)
- [💡 Explanation:](#-explanation-55)
- [Section: Appearances are deceptive!](#section-appearances-are-deceptive)
- [ Skipping lines?](#-skipping-lines)
- [💡 Explanation](#-explanation-56)
- [ Teleportation](#-teleportation)
- [💡 Explanation:](#-explanation-57)
- [ Well, something is fishy...](#-well-something-is-fishy)
- [💡 Explanation](#-explanation-58)
- [Section: Miscellaneous](#section-miscellaneous)
- [ `+=` is faster](#--is-faster)
- [💡 Explanation:](#-explanation-59)
- [ Let's make a giant string!](#-lets-make-a-giant-string)
- [💡 Explanation](#-explanation-60)
- [ Slowing down `dict` lookups \*](#-slowing-down-dict-lookups-)
- [💡 Explanation:](#-explanation-61)
- [ Bloating instance `dict`s \*](#-bloating-instance-dicts-)
- [💡 Explanation:](#-explanation-62)
- [ Minor Ones \*](#-minor-ones-)
- [Contributing](#contributing)
- [Acknowledgements](#acknowledgements)
- [Some nice Links!](#some-nice-links)
- [🎓 License](#-license)
* [Surprise your friends as well!](#surprise-your-friends-as-well)
* [More content like this?](#more-content-like-this)
- [Surprise your friends as well!](#surprise-your-friends-as-well)
- [Need a pdf version?](#need-a-pdf-version)
<!-- tocstop -->

View File

@ -2,7 +2,7 @@
<h1 align="center">What the f*ck Python! 😱</h1>
<p align="center">Изучение и понимание Python с помощью удивительных примеров поведения.</p>
Переводы: [English Original](https://github.com/satwikkansal/wtfpython) [Chinese 中文](https://github.com/robertparley/wtfpython-cn) | [Vietnamese Tiếng Việt](https://github.com/vuduclyunitn/wtfptyhon-vi) | [Spanish Español](https://web.archive.org/web/20220511161045/https://github.com/JoseDeFreitas/wtfpython-es) | [Korean 한국어](https://github.com/buttercrab/wtfpython-ko) | [Russian Русский](https://github.com/satwikkansal/wtfpython/tree/main/translations/README-ru.md) | [German Deutsch](https://github.com/BenSt099/wtfpython) | [Add translation](https://github.com/satwikkansal/wtfpython/issues/new?title=Add%20translation%20for%20[LANGUAGE]&body=Expected%20time%20to%20finish:%20[X]%20weeks.%20I%27ll%20start%20working%20on%20it%20from%20[Y].)
Переводы: [English Original](https://github.com/satwikkansal/wtfpython) [Chinese 中文](https://github.com/robertparley/wtfpython-cn) | [Vietnamese Tiếng Việt](https://github.com/vuduclyunitn/wtfptyhon-vi) | [Spanish Español](https://web.archive.org/web/20220511161045/https://github.com/JoseDeFreitas/wtfpython-es) | [Korean 한국어](https://github.com/buttercrab/wtfpython-ko) | [Russian Русский](https://github.com/satwikkansal/wtfpython/tree/master/translations/ru-russian) | [German Deutsch](https://github.com/BenSt099/wtfpython) | [Add translation](https://github.com/satwikkansal/wtfpython/issues/new?title=Add%20translation%20for%20[LANGUAGE]&body=Expected%20time%20to%20finish:%20[X]%20weeks.%20I%27ll%20start%20working%20on%20it%20from%20[Y].)
Альтернативные способы: [Интерактивный сайт](https://wtfpython-interactive.vercel.app) | [Интерактивный Jupiter notebook](https://colab.research.google.com/github/satwikkansal/wtfpython/blob/master/irrelevant/wtf.ipynb) | [CLI](https://pypi.python.org/pypi/wtfpython)
@ -23,74 +23,138 @@ PS: Если вы уже читали **wtfpython** раньше, с измен
- [👀 Примеры](#-примеры)
- [Раздел: Напряги мозги!](#раздел-напряги-мозги)
- [ Первым делом!](#-первым-делом)
- [💡 Обьяснение](#-обьяснение)
- [ Строки иногда ведут себя непредсказуемо](#-строки-иногда-ведут-себя-непредсказуемо)
- [💡 Объяснение](#-объяснение)
- [ Осторожнее с цепочкой операций](#-осторожнее-с-цепочкой-операций)
- [💡 Объяснение:](#-объяснение-1)
- [ Как не надо использовать оператор `is`](#-как-не-надо-использовать-оператор-is)
- [💡 Объяснение:](#-объяснение-2)
- [ Мистическое хеширование](#-мистическое-хеширование)
- [💡 Объяснение](#-объяснение-3)
- [ В глубине души мы все одинаковы.](#-в-глубине-души-мы-все-одинаковы)
- [💡 Объяснение:](#-объяснение-4)
- [ Беспорядок внутри порядка \*](#-беспорядок-внутри-порядка-)
- [💡 Объяснение:](#-объяснение-5)
- [ Продолжай пытаться... \*](#-продолжай-пытаться-)
- [💡 Объяснение:](#-объяснение-6)
- [ Для чего?](#-для-чего)
- [💡 Объяснение:](#-объяснение-7)
- [ Расхождение во времени исполнения](#-расхождение-во-времени-исполнения)
- [💡 Объяснение](#-объяснение-8)
- [ `is not ...` не является `is (not ...)`](#-is-not--не-является-is-not-)
- [💡 Объяснение](#-объяснение-9)
- [ Крестики-нолики, где X побеждает с первой попытки!](#-крестики-нолики-где-x-побеждает-с-первой-попытки)
- [💡 Объяснение:](#-объяснение-10)
- [ Переменная Шредингера \*](#-переменная-шредингера-)
- [💡 Объяснение:](#-объяснение-11)
- [ Проблема курицы и яйца \*](#-проблема-курицы-и-яйца-)
- [💡 Объяснение](#-объяснение-12)
- [ Отношения между подклассами](#-отношения-между-подклассами)
- [💡 Объяснение](#-объяснение-13)
- [ Равенство и тождество методов](#-равенство-и-тождество-методов)
- [💡 Объяснение](#-объяснение-14)
- [ All-true-ation (непереводимая игра слов) \*](#-all-true-ation-непереводимая-игра-слов-)
- [💡 Объяснение:](#-объяснение-15)
- [💡 Объяснение:](#-объяснение-16)
- [ Строки и обратные слэши](#-строки-и-обратные-слэши)
- [💡 Объяснение](#-объяснение-17)
- [ Не узел! (англ. not knot!)](#-не-узел-англ-not-knot)
- [💡 Объяснение](#-объяснение-18)
- [ Строки, наполовину обернутые в тройные кавычки](#-строки-наполовину-обернутые-в-тройные-кавычки)
- [💡 Объяснение:](#-объяснение-19)
- [ Что не так с логическими значениями?](#-что-не-так-с-логическими-значениями)
- [💡 Объяснение:](#-объяснение-20)
- [ Атрибуты класса и экземпляра](#-атрибуты-класса-и-экземпляра)
- [💡 Объяснение:](#-объяснение-21)
- [ Возврат None из генератора](#-возврат-none-из-генератора)
- [💡 Объяснение:](#-объяснение-22)
- [ Yield from возвращает... \*](#-yield-from-возвращает-)
- [💡 Объяснение:](#-объяснение-23)
- [ Nan-рефлексивность \*](#-nan-рефлексивность-)
- [💡 Объяснение:](#-объяснение-24)
- [ Изменяем неизменяемое!](#-изменяем-неизменяемое)
- [💡 Объяснение:](#-объяснение-25)
- [ Исчезающая переменная из внешней области видимости](#-исчезающая-переменная-из-внешней-области-видимости)
- [💡 Объяснение:](#-объяснение-26)
- [ Загадочное преобразование типов ключей](#-загадочное-преобразование-типов-ключей)
- [💡 Объяснение:](#-объяснение-27)
- [ Посмотрим, сможете ли вы угадать что здесь?](#-посмотрим-сможете-ли-вы-угадать-что-здесь)
- [💡 Объяснение:](#-объяснение-28)
- [ Превышение предела целочисленного преобразования строк](#-превышение-предела-целочисленного-преобразования-строк)
- [💡 Объяснение:](#-объяснение-29)
- [Раздел: Скользкие склоны](#раздел-скользкие-склоны)
- [ Изменение словаря во время прохода по нему](#-изменение-словаря-во-время-прохода-по-нему)
- [💡 Объяснение:](#-объяснение-30)
- [ Упрямая операция `del`](#-упрямая-операция-del)
- [💡 Объяснение:](#-объяснение-31)
- [ Переменная за пределами видимости](#-переменная-за-пределами-видимости)
- [💡 Объяснение:](#-объяснение-32)
- [ Удаление элемента списка во время прохода по списку](#-удаление-элемента-списка-во-время-прохода-по-списку)
- [💡 Объяснение:](#-объяснение-33)
- [ Сжатие итераторов с потерями \*](#-сжатие-итераторов-с-потерями-)
- [💡 Объяснение:](#-объяснение-34)
- [ Утечка переменных внутри цикла](#-утечка-переменных-внутри-цикла)
- [💡 Объяснение:](#-объяснение-35)
- [ Остерегайтесь изменяемых аргументов по умолчанию!](#-остерегайтесь-изменяемых-аргументов-по-умолчанию)
- [💡 Объяснение:](#-объяснение-36)
- [ Ловля исключений](#-ловля-исключений)
- [💡 Объяснение](#-объяснение-37)
- [ Одни и те же операнды, разная история!](#-одни-и-те-же-операнды-разная-история)
- [💡 Объяснение:](#-объяснение-38)
- [ Разрешение имен игнорирует область видимости класса](#-разрешение-имен-игнорирует-область-видимости-класса)
- [💡 Объяснение](#-объяснение-39)
- [ Округляясь как банкир \*](#-округляясь-как-банкир-)
- [💡 Объяснение:](#-объяснение-40)
- [ Иголки в стоге сена \*](#-иголки-в-стоге-сена-)
- [💡 Объяснение:](#-объяснение-41)
- [ Сплиты (splitsies) \*](#-сплиты-splitsies-)
- [💡 Объяснение](#-объяснение-42)
- [ Подстановочное импортирование (wild imports) \*](#-подстановочное-импортирование-wild-imports-)
- [💡 Объяснение:](#-объяснение-43)
- [ Все ли отсортировано? \*](#-все-ли-отсортировано-)
- [💡 Объяснение:](#-объяснение-44)
- [ Полночи не существует?](#-полночи-не-существует)
- [💡 Объяснение:](#-объяснение-45)
- [Раздел: Скрытые сокровища!](#раздел-скрытые-сокровища)
- [ Python, можешь ли ты помочь взлететь?](#-python-можешь-ли-ты-помочь-взлететь)
- [💡 Объяснение:](#-объяснение-46)
- [ `goto`, но почему?](#-goto-но-почему)
- [💡 Объяснение:](#-объяснение-47)
- [ Держитесь!](#-держитесь)
- [💡 Объяснение:](#-объяснение-48)
- [ Давайте познакомимся с дружелюбным Дядей Барри](#-давайте-познакомимся-с-дружелюбным-дядей-барри)
- [💡 Объяснение:](#-объяснение-49)
- [ Даже Python понимает, что любовь - это сложно.](#-даже-python-понимает-что-любовь---это-сложно)
- [💡 Объяснение:](#-объяснение-50)
- [ Да, оно существует!](#-да-оно-существует)
- [💡 Объяснение:](#-объяснение-51)
- [ Многоточие \*](#-многоточие-)
- [💡 Объяснение](#-объяснение-52)
- [ Писконечность (Inpinity)](#-писконечность-inpinity)
- [💡 Объяснение:](#-объяснение-53)
- [ Давайте искажать](#-давайте-искажать)
- [💡 Объяснение:](#-объяснение-54)
- [Раздел: Внешность обманчива!](#раздел-внешность-обманчива)
- [ Пропускаем строки?](#-пропускаем-строки)
- [💡 Объяснение](#-объяснение-55)
- [ Телепортация](#-телепортация)
- [💡 Объяснение:](#-объяснение-56)
- [ Что-то не так...](#-что-то-не-так)
- [💡 Объяснение](#-объяснение-57)
- [Раздел: Разное](#раздел-разное)
- [ `+=` быстрее `+`](#--быстрее-)
- [💡 Объяснение:](#-объяснение-58)
- [ Сделаем гигантскую строку!](#-сделаем-гигантскую-строку)
- [💡 Объяснение](#-объяснение-59)
- [ Замедляем поиск по `dict` \*](#-замедляем-поиск-по-dict-)
- [💡 Объяснение:](#-объяснение-60)
- [ Раздуваем экземпляры словарей \*](#-раздуваем-экземпляры-словарей-)
- [💡 Объяснение:](#-объяснение-61)
- [ Минорное \*](#-минорное-)
- [Вклад в проект](#вклад-в-проект)
- [Благодарности](#благодарности)
- [Несколько хороших ссылок!](#несколько-хороших-ссылок)
- [🎓 Лицензия](#-лицензия)
- [Удиви своих друзей!](#удиви-своих-друзей)
- [Нужна PDF версия?](#нужна-pdf-версия)