pydoc
-
예시로 배우는 파이썬 (모듈)PYTHON(파이썬)/파이썬 기초 2024. 10. 17. 05:20
############################################################################## Python 기초 15 : 모듈1# eplus(www.eiot.co.kr)-나도코딩(YouTube):파이썬 코딩 무료 강의 (기본편) 참조 ############################################################################# import price as ps ps.price(3) ps.price_m(2) from price import * price(3)price_m(10)price_s(10) from price import price, price_m price(11)price_m(20) Goover는?파이썬에서..