> For the complete documentation index, see [llms.txt](https://koonkim.gitbook.io/mongodb/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://koonkim.gitbook.io/mongodb/master/crud/untitled-1/exercises.md).

# Exercises

### Exercise

* Insert one document to pypeople collection
  * \_id:0, name: Jisu, age: 24
* 결과

```python
{'_id': 0, 'age': 24, 'name': 'Jisu’}
```

* Insert multiple document
  * \_id: 1, name: Deayoung, age: 51
  * \_id: 2, name: Youngjin, age: 24
  * Print all documents
* 결과

```python
 [{'_id': 0, 'age': 24, 'name': 'Jisu’},
  {'_id': 1, 'age': 51, 'name': 'Deayoung’},
  {'_id': 2, 'age': 24, 'name': 'Youngjin'}]
```
