Python에서의 List slicing은 매우 간편하다. Length 4인 Array에서 index 3부터 끝까지 출력하고싶다면 array[3:]이라고 하면 된다. 매우 간편.. 리스트를 거꾸로 출력하고 싶을때는 array[::-1]이라고 하면 된다. 진짜 간편... 그럼 C#은 어떨까? 애석하게도 저렇게 간편한 방법으로는 표현할 수가 없다... 그래서 System.Linq 라이브러리에서 제공하는 Skip method와 Take method를 활용하여 Slicing할 수 있다. IEnumerable.Skip(int) | IEnumerable.Take(int) 라이브러리 : System.Linq Return : An IEnumerable that contains the elements that occur..