티스토리 뷰

  • 파이썬 리스트 자료형 추가는 .append 메서드로 가능하다.
a = [(1, 2), (3, 5)]

a.append(1)
print(a)
# [(1, 2), (3, 5), 1]

a.append((5,7))
print(a)
# [(1, 2), (3, 5), 1, (5, 7)]

a.insert(0, [0,1])
print(a)
# [[0, 1], (1, 2), (3, 5), 1, (5, 7)]
  • 참고로 튜플 자료형은 .append 메서드를 사용할 수 없다.
b = (1, 2, 3)
b.append(4)
print(b)
# AttributeError: 'tuple' object has no attribute 'append'
댓글