- 파이썬(슬라이싱)

  list1 = [0, 1, 2, 3, 4, 5]
  list1[1:4] = [11,22,33]
  print(list1)
  >>> [0,11,22,33,4,5]

+ Recent posts