File size: 483 Bytes
32e9ba0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
---
license: mit
---
# Animals Dataset
This dataset contains information about various animals.
## File
- `animals.jsonl`
## Columns / Fields
- `id` – unique identifier
- `name` – common name of the animal
- `species` – scientific name
- `habitat` – natural habitat
- `diet` – dietary type
## Usage
Load in Python:
```python
import json
animals = []
with open("animals.jsonl", "r") as f:
for line in f:
animals.append(json.loads(line))
print(animals[:5]) |