(Python 4-2강) Module and Project
210804
Previous(Python 5-1강) File / Exception / Log HandlingNext(Python 4-1강) Python Object Oriented Programming
Last updated
210804
Last updated
import fah_converter as fahfrom fah_converter import covert_c_to_ffrom fah_converter import *# 절대참조
from game.graphic.render import render_test()
# . 현재디렉토리기준
from .render import render_test()
# .. 부모 디렉토리 기준
from ..sound.echo import echo_test()# 만들기
conda create -n my project python=3.8
# 호출
conda activate my_project
# 해제
conda deactivate
# 패키지 설치
conda install <패키지명>