본문 바로가기
IT

파이썬 배열의 기초

by 소혜민 2021. 12. 15.
반응형
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
반응형

댓글