기계는 거짓말하지 않는다

Python list 특정 길이, 값으로 초기화 본문

Python

Python list 특정 길이, 값으로 초기화

KillinTime 2021. 8. 5. 13:40

리스트 내포를 이용하거나 [value] * n으로 표현하면 된다.

# 길이 100 list를 생성하고 0으로 초기화
temp_list = [0 for i in range(100)]
temp_list = [0] * 100 # [value] * n

'Python' 카테고리의 다른 글

Python OpenCV, PIL Image shape, size  (0) 2021.08.10
Python PermissionError: [Errno 13] Permission denied  (0) 2021.08.05
Python Numpy transpose  (0) 2021.08.04
Python Class 정렬, 정렬 기준  (0) 2021.08.03
Python Index Error  (0) 2021.08.03
Comments