haju__log
[python] python list 길이 지정하기 본문
반응형
✅ list 생성하기
a=list()
✅ list 길이 지정하기
a=[0 for i in range(N)]
a=list(0 for i in range(0,9))
✅
반응형
'코테관련 이론' 카테고리의 다른 글
[python]reverse (0) | 2023.02.26 |
---|---|
[python] IndentationError: unexpected indent 에러 (0) | 2023.02.23 |
[python] 코테 준비 python 관련 함수들 (0) | 2023.02.23 |
[python] 특수문자 출력하기 (0) | 2023.02.22 |
[python] %d %s 값 넣기, format() (0) | 2023.02.22 |