Notice
Recent Posts
Today
Total
«   2024/07   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
관리 메뉴

나름개발블로그

python jupyter notebook 팁1 본문

A/Python

python jupyter notebook 팁1

성남개발자 2018. 10. 16. 10:10

jupyter notebook 에서 파일로 저장하는 방법 


1
2
3
%%wirtefile test.py
def add(x,y):
    return x+y

cs



jupyter notebook 현재 디랙터리 확인

1
%pwd
cs

Shell 명령어 , (!) 붙여서 사용

1
!python add.py
cs




'A > Python' 카테고리의 다른 글

python pyinstaller decode  (0) 2018.11.06
파이썬 내장 자료, 함수 알아보기  (0) 2018.10.16
아나콘다 가상환경 설정 (Virtual Env)  (0) 2018.07.24
파이썬 넘파이  (0) 2018.07.17
Comments