dry-python / dry-python/lambdas
Bug in the docs
Abierto
- Lenguaje dominante
- Python
- Estrellas
- 286
- Forks
- 6
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
```python
>>> complex_math_expression = 50 / (_ ** 2) * 2
>>> print(complex_math_expression(5))
100.0
```
But:
```python
>>> 50 / (5 ** 2) * 2
4.0
```
Not good :)
Guía de contribución
Evaluación
Este issue todavía no se ha evaluado.