10 lines
310 B
Markdown
10 lines
310 B
Markdown
|
# Numpy tips
|
||
|
Numpy will be a library that you will use time and time again so you had better get familiar with it.
|
||
|
|
||
|
```
|
||
|
import numpy as np
|
||
|
```
|
||
|
|
||
|
Most famously they are used for creating [arrays](obsidian://open?vault=Coding%20Tips&file=Python%2Fcodes%2Farrays%2FAbout%20arrays) in python in efficient ways.
|
||
|
|