(PYTHON) 모듈 예제, 모듈 가져오기 – Python
(PYTHON) 모듈 예제, 모듈 가져오기 – Python mod1.py를 만들고 다른 파일에서 모듈을 호출합니다. https://github.com/ngio/python_study/blob/main/module_py.py GitHub – ngio/python_study: Python, Konply, Numpy, Matplotlib, Networkx, Pandas python, konply, numpy, matplotlib, networkx, pandas – GitHub – ngio/python_study: 파이썬, konply, numpy, matplotlib, networkx, pandas github.com import mod1 print(” module name is “, mod1.__name__) # mod1.py def add(a, b): return a+b … Read more