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
1 changed files with 7 additions and 2 deletions

9
README.md vendored
View File

@ -83,6 +83,8 @@ So, here ya go...
- [💡 Explanation:](#-explanation-16)
- [Needle in a Haystack](#needle-in-a-haystack)
- [💡 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)
- [TODO: Hell of an example!](#todo-hell-of-an-example)
- [Contributing](#contributing)
@ -1398,11 +1400,14 @@ tuple()
### 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:**
```py
>>> a, b = a[b] = {}, 5
>>> a
{5: ({...}, 5)}
```