Skip to content
Snippets Groups Projects
Commit 815928d3 authored by Young Woo Kim's avatar Young Woo Kim
Browse files

Update README.md

parent 5ebe8a9d
No related branches found
No related tags found
No related merge requests found
...@@ -96,7 +96,8 @@ print (pd.__version__) ...@@ -96,7 +96,8 @@ print (pd.__version__)
``` ```
import numpy as np import numpy as np
import pandas as pd로 해당 python notebook에서 numpy와 pandas를 불러옵니다. import pandas as pd로 해당 python notebook에서 numpy와 pandas를 불러옵니다.
print (np.__version__)은 해당 numpy의 버전을 출력합니다.
print (np._version_)은 해당 numpy의 버전을 출력합니다.
```python ```python
one = [1,2,3,4,5] one = [1,2,3,4,5]
...@@ -120,6 +121,12 @@ type (one) ...@@ -120,6 +121,12 @@ type (one)
```python ```python
```
one = [1,2,3,4,5], ten = [10,20,30,40,50]으로
one, ten 변수를 선언하고, 리스트를 저장합니다.
type(one) one의 타입을 출력합니다. list라고 나오게 됩니다.
onearr = np.array(one) onearr = np.array(one)
tenarr = np.array(ten) tenarr = np.array(ten)
print (onearr) print (onearr)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment