mirror of
https://github.com/satwikkansal/wtfpython
synced 2024-11-22 02:54:25 +01:00
📝 Fixed simple typos
This commit is contained in:
parent
48256e1fe8
commit
9d0ad9ed98
4
README.md
vendored
4
README.md
vendored
@ -2135,7 +2135,7 @@ UnboundLocalError: local variable 'a' referenced before assignment
|
||||
>>> another_func()
|
||||
2
|
||||
```
|
||||
* The keywords `global` and `nonlocal` tell the python interpreter to not delcare new variables and look them up in the corresponding outer scopes.
|
||||
* The keywords `global` and `nonlocal` tell the python interpreter to not declare new variables and look them up in the corresponding outer scopes.
|
||||
* Read [this](https://sebastianraschka.com/Articles/2014_python_scope_and_namespaces.html) short but an awesome guide to learn more about how namespaces and scope resolution works in Python.
|
||||
|
||||
---
|
||||
@ -3114,7 +3114,7 @@ Ellipsis
|
||||
>>> ...
|
||||
Ellipsis
|
||||
```
|
||||
- Eliipsis can be used for several purposes,
|
||||
- Ellipsis can be used for several purposes,
|
||||
+ As a placeholder for code that hasn't been written yet (just like `pass` statement)
|
||||
+ In slicing syntax to represent the full slices in remaining direction
|
||||
```py
|
||||
|
Loading…
Reference in New Issue
Block a user