1
0
mirror of https://github.com/satwikkansal/wtfpython synced 2024-11-22 02:54:25 +01:00

Merge branch 'master' into patch-1

This commit is contained in:
Satwik Kansal 2017-08-31 15:55:24 -07:00 committed by GitHub
commit 3256b04e73

9
README.md vendored
View File

@ -83,6 +83,8 @@ So, here ya go...
- [💡 Explanation:](#-explanation-16) - [💡 Explanation:](#-explanation-16)
- [Needle in a Haystack](#needle-in-a-haystack) - [Needle in a Haystack](#needle-in-a-haystack)
- [💡 Explanation:](#-explanation-17) - [💡 Explanation:](#-explanation-17)
- [Let's see if you can guess this?](#lets-see-if-you-can-guess-this)
- [💡 Explanation:](#-explanation-18)
- [Minor Ones](#minor-ones) - [Minor Ones](#minor-ones)
- [TODO: Hell of an example!](#todo-hell-of-an-example) - [TODO: Hell of an example!](#todo-hell-of-an-example)
- [Contributing](#contributing) - [Contributing](#contributing)
@ -1398,11 +1400,14 @@ tuple()
### Let's see if you can guess this? ### Let's see if you can guess this?
Originally, suggested by @PiaFraus in [this](https://github.com/satwikkansal/wtfPython/issues/9) issue. Suggested by @PiaFraus in [this](https://github.com/satwikkansal/wtfPython/issues/9) issue.
```py
a, b = a[b] = {}, 5
```
**Output:** **Output:**
```py ```py
>>> a, b = a[b] = {}, 5
>>> a >>> a
{5: ({...}, 5)} {5: ({...}, 5)}
``` ```