[Python] if __name__ == "__main__" : 이해하기
파이썬 파일을 import 해서 원하는 함수만을 사용하려고 할 때, if __name__ == "__main__": 내에 있는 스크립트는 import시 제외된다. 예시를 보자. # forModule.py def forPrint(): return "hello!" print(forPrint())#hello! 출력됨 #useModule.py import forModule#벌써 여기서 hello! 출력됨 print forModule.forPrint()#hello! 출력됨 하지만 우리가 원하는건 오직 forModule의 forPrint 함수만 사용하기 위함이다. return 까지만! 그렇기 때문에, 아래와 같이 수정해준다. # forModule.py def forPrint(): return "hello!" if ..
Basic_Studies/Python
2020. 10. 12. 14:47
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 10989 파이썬
- 카페음료테스트
- css marquee
- Til
- dvd 효과
- next.js 리다이렉트
- 리액트
- NextJS
- nextjs 파라미터 넘기기
- 리액트 파라미터 넘기기
- nextjs 스크롤
- 글래스모피즘 애니메이션 구현
- 리액트 컴포넌트
- 화이팅
- 파이썬 flask
- bs4 크롤링
- nuxt 공식문서
- react router
- 파이썬 정렬
- vscode venv
- nuxt 공식문서 한글
- 자바스크립트
- 리액트 스크롤
- 글래스모피즘 구현
- 움직이는 글래스모피즘
- getserversideprops redirect
- css 글래스모피즘
- 파이썬 크롤링
- 리액트 라우터
- 백준 10989 파이썬
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함