"Python import"의 두 판 사이의 차이

잔글 (봇: 자동으로 텍스트 교체 (-source +syntaxhighlight))
 
(다른 사용자 한 명의 중간 판 하나는 보이지 않습니다)
6번째 줄: 6번째 줄:
==문법==
==문법==
모듈 전체를 가져오는 방법
모듈 전체를 가져오는 방법
<source lang='python'>
<syntaxhighlight lang='python'>
import 모듈
import 모듈
</source>  
</syntaxhighlight>  




모듈에서 필요한 것만 가져오는 방법
모듈에서 필요한 것만 가져오는 방법
<source lang='python'>
<syntaxhighlight lang='python'>
from 모듈 import 함수
from 모듈 import 함수
</source>
</syntaxhighlight>
<source lang='python'>
<syntaxhighlight lang='python'>
from 모듈 import 변수
from 모듈 import 변수
</source>
</syntaxhighlight>


==예시==
==예시==
sys 모듈을 가져와보자
sys 모듈을 가져와보자
<source lang='python'>
<syntaxhighlight lang='console'>
import sys
>>> import sys
</source>
</syntaxhighlight>


sys 와 os 모듈을 한번에 가져와 보자
sys 와 os 모듈을 한번에 가져와 보자
<source lang='python'>
<syntaxhighlight lang='console'>
import sys, os
>>> import sys, os
</source>
</syntaxhighlight>
:→ 여러 모듈을 가져올 경우 콤마로 구분하여 가져올 수 있다.
:→ 여러 모듈을 가져올 경우 콤마로 구분하여 가져올 수 있다.



2020년 11월 2일 (월) 02:31 기준 최신판

1 개요[ | ]

import
임포트
  • 모듈을 불러오는 명령어

2 문법[ | ]

모듈 전체를 가져오는 방법

import 모듈


모듈에서 필요한 것만 가져오는 방법

from 모듈 import 함수
from 모듈 import 변수

3 예시[ | ]

sys 모듈을 가져와보자

>>> import sys

sys 와 os 모듈을 한번에 가져와 보자

>>> import sys, os
→ 여러 모듈을 가져올 경우 콤마로 구분하여 가져올 수 있다.

4 같이 보기[ | ]

5 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}