## Objective Let us compare the memory consumption of Python PANDAS library. ## Methodology Small script called memtest*.py*: ```
```python

@profile
def a():
    import pandas

if __name__=="__main__":
    a()

```
```

Test it with

```bash
$python -m memory_profiler memtest.py
```

## Results:

Output:  
![](https://asifrehan.com/wp-content/uploads/2018/08/memory-profiling-300x104.png)

The increment of memory usage in line#4 shows, it took 36.527MB to import pandas on my machine. What does your benchmarking result look like?

</div></article>