Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
Final_Project_OPEN_SW
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Young Woo Kim
Final_Project_OPEN_SW
Commits
815928d3
Commit
815928d3
authored
4 years ago
by
Young Woo Kim
Browse files
Options
Downloads
Patches
Plain Diff
Update README.md
parent
5ebe8a9d
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+8
-1
8 additions, 1 deletion
README.md
with
8 additions
and
1 deletion
README.md
+
8
−
1
View file @
815928d3
...
@@ -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
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment