# Needless Comprehension
This [[anti-pattern]] [[NIH - Not Invented Here|reinvent the wheel]] instead of using something that already does what's required.
```python
# Don't
foo = [i for i in range(10)]
# Do
foo = list(range(10))
```
---
Bibliography:
- [Title - website.com](need bibliography)