반응형
test = []
test.append((44,55))
test.append((55,66))
print("==========배열에 추가하기 - append ===========")
print(len(test), test)
test.pop(len(test)-1)
print("===========배열에서 빼기 - pop ==============")
print(len(test), test)
test.append((345.34, 2355.44))
print("=========append & pop=====================")
print(len(test), test)
print(str(test))
test.pop(len(test)-1)
test.pop(len(test)-1)
print(len(test), test)
print(str(test))
배열에 동적으로 값을 넣고 뺀다. append와 pop을 이용한다. index는 0 부터 시작을 한다. 위의 코드를 실행하면 결과는 다음과 같다.
==========배열에 추가하기 - append ===========
2 [(44, 55), (55, 66)]
===========배열에서 빼기 - pop ==============
1 [(44, 55)]
=========append & pop=====================
2 [(44, 55), (345.34, 2355.44)]
[(44, 55), (345.34, 2355.44)]
0 []
[]
Process finished with exit code 0
반응형
'IT' 카테고리의 다른 글
[Python / 프로그램 자동화] 외부 실행파일 실행시키고 화면 최대화하기 (0) | 2022.01.10 |
---|---|
[python/pywinauto] cmd.exe에서 출력 읽기 (0) | 2022.01.07 |
파이썬 - 투명한 배경을 가진 이미지를 PDF로 저장하기 (0) | 2021.12.15 |
Python / Image to PDF (0) | 2021.10.29 |
Python Curve Editor (0) | 2021.08.06 |
댓글