dry-python / dry-python/lambdas
Bug in the docs
Offen
- Vorherrschende Sprache
- Python
- Sterne
- 286
- Forks
- 6
- PR-Merge-Kennzahlen
- Keine gemergten PRs in 30 T.
Beschreibung
```python
>>> complex_math_expression = 50 / (_ ** 2) * 2
>>> print(complex_math_expression(5))
100.0
```
But:
```python
>>> 50 / (5 ** 2) * 2
4.0
```
Not good :)
Beitragsleitfaden
Bewertung
Dieses Issue wurde noch nicht bewertet.