모듈 : 특정 목적을 가진 함수, 자료의 모임
import random
. 점표기법 // random.randrange(0,2)
패키지: 모듈을 폴더로 구분하여 관리
import user.cal //앞은 폴더
print(cal.plus(3,4))
from user.cal import plus
print(plus(3,4)) //cal.plus()로 안해도 됨
●Numpy 수치적파이썬
import numpy as np
np_arr = np.array(range(5))
공백: 배열
class numpy.ndarray
n차원
cf. 콤마 : 리스트
class list 1차원
'Python' 카테고리의 다른 글
week5 - ch02. HTML (0) | 2022.07.26 |
---|---|
week5 - Ch01. 강의 개요 (0) | 2022.07.25 |
211112 파이썬 벼락치기 (0) | 2021.11.13 |
참고용 (0) | 2021.11.02 |
파이썬 (0) | 2021.07.25 |